92 lines
3.1 KiB
Vue
92 lines
3.1 KiB
Vue
<template>
|
|
<SMPage no-breadcrumbs background="/img/background.jpg">
|
|
<SMRow>
|
|
<SMDialog narrow>
|
|
<template v-if="!formDone">
|
|
<h1>Resend Verify Email</h1>
|
|
<SMForm v-model="form" @submit="handleSubmit">
|
|
<SMInput control="username" />
|
|
<SMFormFooter>
|
|
<template #left>
|
|
<div class="small">
|
|
<span class="pr-1">Stuck?</span
|
|
><router-link to="/contact"
|
|
>Contact Us</router-link
|
|
>
|
|
</div>
|
|
</template>
|
|
<template #right>
|
|
<SMButton
|
|
type="submit"
|
|
label="Send"
|
|
icon="arrow-forward-outline" />
|
|
</template>
|
|
</SMFormFooter>
|
|
</SMForm>
|
|
</template>
|
|
<template v-else>
|
|
<h1>Email Sent!</h1>
|
|
<p class="text-center">
|
|
If that username has been registered, and you still need
|
|
to verify your email, you will receive an email with a
|
|
new verify code.
|
|
</p>
|
|
<SMRow class="pb-2">
|
|
<SMColumn class="justify-content-center">
|
|
<SMButton :to="{ name: 'home' }" label="Home" />
|
|
</SMColumn>
|
|
</SMRow>
|
|
</template>
|
|
</SMDialog>
|
|
</SMRow>
|
|
</SMPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { reactive, ref } from "vue";
|
|
import { useReCaptcha } from "vue-recaptcha-v3";
|
|
import SMButton from "../components/SMButton.vue";
|
|
import SMDialog from "../components/SMDialog.vue";
|
|
import SMForm from "../components/SMForm.vue";
|
|
import SMFormFooter from "../components/SMFormFooter.vue";
|
|
import SMInput from "../components/SMInput.vue";
|
|
import { api } from "../helpers/api";
|
|
import { Form, FormControl } from "../helpers/form";
|
|
import { Required } from "../helpers/validate";
|
|
|
|
const { executeRecaptcha, recaptchaLoaded } = useReCaptcha();
|
|
const formDone = ref(false);
|
|
const form = reactive(
|
|
Form({
|
|
username: FormControl("", Required()),
|
|
})
|
|
);
|
|
|
|
const handleSubmit = async () => {
|
|
form.loading(true);
|
|
|
|
try {
|
|
await recaptchaLoaded();
|
|
const captcha = await executeRecaptcha("submit");
|
|
|
|
await api.post({
|
|
url: "/users/resendVerifyEmailCode",
|
|
body: {
|
|
username: form.controls.username.value,
|
|
captcha_token: captcha,
|
|
},
|
|
});
|
|
|
|
formDone.value = true;
|
|
} catch (error) {
|
|
if (error.status == 422) {
|
|
formDone.value = true;
|
|
} else {
|
|
form.apiErrors(error);
|
|
}
|
|
} finally {
|
|
form.loading(false);
|
|
}
|
|
};
|
|
</script>
|