You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
1.5 KiB

<template>
<v-app>
<v-main>
<v-container fluid>
<v-row align="center" justify="center" style="height: 100vh">
<v-col cols="12" sm="12" md="10" lg="4">
<v-card>
<v-card-title class="d-flex align-center justify-center">
<Link :href="route('/')">
<application-logo style="height: 75" />
</Link>
</v-card-title>
<v-card-text>
<p class="font-weight-semibold text--primary mb-2">
Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another.
</p>
</v-card-text>
<v-card-text>
<v-form @submit.prevent="submit">
<v-btn type="submit" block color="primary" class="mt-3"
>Send Verification Email</v-btn
>
</v-form>
</v-card-text>
</v-card>
</v-col>
</v-row>
</v-container>
</v-main>
</v-app>
</template>
<script>
import ApplicationLogo from "../../components/ApplicationLogo.vue";
export default {
components: { ApplicationLogo },
data() {
return {
showPassword: false,
isLoading: false,
form: this.$inertia.form(),
};
},
methods: {
submit() {
this.form.post(this.route('verification.send'));
},
},
};
</script>