OpenAuth_views/src/Login/twofactors/toList.svelte

17 lines
248 B
Svelte

<script>
export let finish = () => {};
</script>
<style>
a {
color: var(--primary);
text-decoration: none;
}
</style>
<p>
<a href="# " on:click={evt => evt.preventDefault() || finish(false)}>
Choose another Method
</a>
</p>