refactor: Run prettier

This commit is contained in:
Roman Godmaire 2023-11-21 08:42:07 -05:00
parent 05050fb4d0
commit d029ff0ecd

View file

@ -15,9 +15,9 @@
<title>Account | Roll With It</title>
</svelte:head>
<main class="container">
<h1>Account</h1>
<section>
<h1>Account</h1>
<section>
<form method="POST" action="?/updateAccount" use:enhance>
{#if form?.type === 'updateAccount'}
<small style="color: {form?.success ? 'green' : 'red'}">{form?.message}</small>
@ -40,9 +40,9 @@
<button type="submit">Save Changes</button>
</form>
</section>
</section>
<section>
<section>
<form method="POST" action="?/changePassword" use:enhance>
{#if form?.type === 'changePassword'}
<small style="color: {form?.success ? 'green' : 'red'}">{form.message}</small>
@ -104,16 +104,15 @@
Change Password
</button>
</form>
</section>
</section>
<section>
<section>
<hgroup>
<h3>Billing Information</h3>
<h4>Thank you for your support!</h4>
</hgroup>
</section>
</section>
<form method="POST" action="?/signout">
<form method="POST" action="?/signout">
<button class="secondary" type="submit">Logout</button>
</form>
</main>
</form>