Run npm format

This commit is contained in:
Fred Boniface 2023-08-24 20:28:57 +01:00
parent bc6fd6cdc9
commit e42aaa419d
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<script>
import LogoutButton from '$lib/navigation/LogoutButton.svelte';
import Header from '$lib/navigation/header.svelte';
import Header from '$lib/navigation/header.svelte';
import Loading from '$lib/navigation/loading.svelte';
import Nav from '$lib/navigation/nav.svelte';
import { uuid } from '$lib/stores/uuid.js';
@ -47,7 +47,10 @@ import Header from '$lib/navigation/header.svelte';
<p class="api_response">Registration Domain: {data[0]['domain']}</p>
<p class="api_response">Access Time: {data[0]['atime']}</p>
<LogoutButton />
<p>Clicking the logout button will delete your data from your browser. You will then be able to make a new account, your old account will remain inactive and be deleted after 90 days.</p>
<p>
Clicking the logout button will delete your data from your browser. You will then be able to make a new account, your old account will remain inactive and be deleted after 90
days.
</p>
{:else}
<p class="api_response">You are not registered, we don't have any data stored.</p>
{/if}