OpenAuth_server/Frontend/src/pages/login/twofactors/toList.svelte

18 lines
272 B
Svelte

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