15 lines
402 B
Svelte
15 lines
402 B
Svelte
<script>
|
|
import { navigate } from '../lib/routing.js';
|
|
|
|
import EnterPassphrase from './passphrase/EnterPassphrase.svelte';
|
|
</script>
|
|
|
|
|
|
<div class="flex flex-col h-screen max-w-sm m-auto gap-y-8 justify-center">
|
|
<h1 class="text-2xl font-bold text-center">
|
|
Change passphrase
|
|
</h1>
|
|
|
|
<EnterPassphrase cancellable={true} on:save={() => navigate('Home')}/>
|
|
</div>
|