Events can be subscribed to with the <hanko-auth> and <hanko-profile> components in the same manner. Also, you can bind event handler via the frontend-sdk(see next section).

Usage

Markup

<hanko-events id="events"></hanko-events>
<script>
  document
    .getElementById("events")
    .addEventListener("onAuthFlowCompleted", console.log);
  // more events are available (see "frontend-sdk" docs)...
</script>