forked from potsda.mn/mobilizon
93a97b0865
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
85 lines
2.3 KiB
Vue
85 lines
2.3 KiB
Vue
<template>
|
|
<v-container fluid fill-height>
|
|
<v-layout align-center justify-center>
|
|
<v-flex xs12 sm8 md4>
|
|
<v-card class="elevation-12">
|
|
<v-toolbar dark color="primary">
|
|
<v-toolbar-title>Resend Instructions</v-toolbar-title>
|
|
</v-toolbar>
|
|
<v-card-text>
|
|
<v-form @submit="resendConfirmationAction" v-if="!validationSent">
|
|
<v-text-field
|
|
label="Email"
|
|
type="email"
|
|
v-model="credentials.email"
|
|
required
|
|
:state="state.email.status"
|
|
:rules="[rules.required, rules.email]"
|
|
>
|
|
</v-text-field>
|
|
<v-btn type="submit" color="blue">Send instructions again</v-btn>
|
|
</v-form>
|
|
<div v-else>
|
|
<h2>Validation email sent to {{ credentials.email }}</h2>
|
|
<v-alert :value="true" type="info">Please check you spam folder if you didn't receive the email.</v-alert>
|
|
</div>
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
import fetchStory from '@/api/eventFetch';
|
|
|
|
export default {
|
|
name: 'ResendConfirmation',
|
|
props: {
|
|
email: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
credentials: {
|
|
email: '',
|
|
},
|
|
validationSent: false,
|
|
error: false,
|
|
state: {
|
|
email: {
|
|
status: null,
|
|
msg: '',
|
|
},
|
|
},
|
|
rules: {
|
|
required: value => !!value || 'Required.',
|
|
email: (value) => {
|
|
const pattern = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
return pattern.test(value) || 'Invalid e-mail.';
|
|
},
|
|
},
|
|
};
|
|
},
|
|
mounted() {
|
|
this.credentials.email = this.email;
|
|
},
|
|
methods: {
|
|
resendConfirmationAction(e) {
|
|
e.preventDefault();
|
|
fetchStory('/users/resend', this.$store, { method: 'POST', body: JSON.stringify(this.credentials) }).then(() => {
|
|
this.validationSent = true;
|
|
}).catch((err) => {
|
|
Promise.resolve(err).then(() => {
|
|
this.error = true;
|
|
this.validationSent = true;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|