Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Nora01K committed Dec 17, 2023
1 parent 35eee96 commit f2f2925
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/routes/register/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<RegisterInput
value={nickname}
iconString="mdi:account-eye-outline"
placeholder="{$t('register.nickname.header')}"
placeholder={$t('register.nickname.header')}
type="text"
onInput={handleNicknameInput}
validateIcon={validateIconNickname}
Expand Down Expand Up @@ -264,7 +264,10 @@
{/if}

<div class="flex flex-row mt-3">
<a href="/"><button class="btn variant-filled-surface mr-2">{$t('register.button.cancel')}</button></a>
<a href="/"
><button class="btn variant-filled-surface mr-2">{$t('register.button.cancel')}</button
></a
>
<button
disabled={!areAllInputsCorrect}
class="btn variant-filled-primary ml-2"
Expand Down

0 comments on commit f2f2925

Please sign in to comment.