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