We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6af4c9 + d236492 commit 952cb81Copy full SHA for 952cb81
2 files changed
frontend/src/assets/auth/celebration.png
21.2 KB
frontend/src/views/auth/AccountVerified.vue
@@ -3,7 +3,9 @@
3
<div class="auth-container" v-if="verified">
4
<div class="auth-sub-container">
5
<div class="auth-sub-container-content">
6
+ <img src="../../assets/auth/celebration.png" class="h-12">
7
<h1 class="auth-sub-container-content-heading">You are now verified</h1>
8
+ <h1 class="text-sm text-gray-matcha text-center">Find interesting people, chat and set up dates. Someone is waiting for you.</h1>
9
<router-link to="/accounts/signin" class="auth-sub-container-content-button">Sign in</router-link>
10
</div>
11
@@ -29,7 +31,7 @@ export default {
29
31
async checkToken() {
30
32
const { token } = this.$route.query;
33
if (!token) {
- await this.$router.push('/accounts/verify/error');
34
+ throw new Error('Invalid token');
35
}
36
},
37
async verifyUser() {
0 commit comments