Skip to content

Commit

Permalink
Bring back raised buttons for account created/deleted message
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVelezLl committed Mar 19, 2023
1 parent c6f0c6f commit 295bde7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

<MessageLayout
:header="$tr('accountDeletedTitle')"
/>
>
<template #back>
<VBtn color="primary" :to="{ name: 'Main' }" large>
{{ $tr('backToLogin') }}
</VBtn>
</template>
</MessageLayout>

</template>

Expand All @@ -18,6 +24,7 @@
},
$trs: {
accountDeletedTitle: 'Account successfully deleted',
backToLogin: 'Continue to sign-in page',
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

<MessageLayout
:header="$tr('accountCreatedTitle')"
/>
>
<template #back>
<VBtn color="primary" :to="{ name: 'Main' }" large>
{{ $tr('backToLogin') }}
</VBtn>
</template>
</MessageLayout>

</template>

Expand All @@ -18,6 +24,7 @@
},
$trs: {
accountCreatedTitle: 'Account successfully created',
backToLogin: 'Continue to sign-in page',
},
};
Expand Down

0 comments on commit 295bde7

Please sign in to comment.