Add delay message to password reset

This commit is contained in:
Tanner Collin 2021-08-15 00:15:35 +00:00
parent 35d2dd22f1
commit 0183b8a1e1

View File

@ -48,13 +48,14 @@ function ResetForm() {
<Message <Message
error error
header='Email not found in Spaceport' header='Email not found in Spaceport'
content='You can only use this form if you have an account with this new member portal.' content='Ask a director if you forgot which one you used.'
/> />
<Form.Button loading={loading} error={error.non_field_errors}> <Form.Button loading={loading} error={error.non_field_errors}>
Submit Submit
</Form.Button> </Form.Button>
{success && <div>Success! Be sure to check your spam folder.</div>} {loading && <div>Give me like 30 seconds...</div>}
{success && <div>Success! Be sure to check your <b>spam folder</b>.</div>}
</Form> </Form>
); );
}; };