add descriptive text

This commit is contained in:
2023-02-28 08:27:04 +10:00
parent 835e8be4dc
commit 037873778d
2 changed files with 9 additions and 0 deletions

View File

@@ -4,6 +4,10 @@
<SMDialog class="mt-5">
<template v-if="!formDone">
<h1>Forgot Password</h1>
<p>
Enter your username below to receive a password reset
link to your email address.
</p>
<SMForm v-model="form" @submit="handleSubmit">
<SMInput control="username" />
<SMFormFooter>
@@ -47,6 +51,7 @@ 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";

View File

@@ -4,6 +4,10 @@
<SMDialog class="mt-5">
<template v-if="!formDone">
<h1>Forgot Username</h1>
<p>
Enter your email address, and if an account exists, we
will email you your username.
</p>
<SMForm v-model="form" @submit="handleSubmit">
<SMInput control="email" />
<SMFormFooter>