Skip to content

Commit 295bde7

Browse files
committed
Bring back raised buttons for account created/deleted message
1 parent c6f0c6f commit 295bde7

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

contentcuration/contentcuration/frontend/accounts/pages/accountDeleted/AccountDeleted.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
<MessageLayout
44
:header="$tr('accountDeletedTitle')"
5-
/>
5+
>
6+
<template #back>
7+
<VBtn color="primary" :to="{ name: 'Main' }" large>
8+
{{ $tr('backToLogin') }}
9+
</VBtn>
10+
</template>
11+
</MessageLayout>
612

713
</template>
814

@@ -18,6 +24,7 @@
1824
},
1925
$trs: {
2026
accountDeletedTitle: 'Account successfully deleted',
27+
backToLogin: 'Continue to sign-in page',
2128
},
2229
};
2330

contentcuration/contentcuration/frontend/accounts/pages/activateAccount/AccountCreated.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
<MessageLayout
44
:header="$tr('accountCreatedTitle')"
5-
/>
5+
>
6+
<template #back>
7+
<VBtn color="primary" :to="{ name: 'Main' }" large>
8+
{{ $tr('backToLogin') }}
9+
</VBtn>
10+
</template>
11+
</MessageLayout>
612

713
</template>
814

@@ -18,6 +24,7 @@
1824
},
1925
$trs: {
2026
accountCreatedTitle: 'Account successfully created',
27+
backToLogin: 'Continue to sign-in page',
2128
},
2229
};
2330

0 commit comments

Comments
 (0)