Rename sections of UI to include "Your"

This commit is contained in:
2021-12-22 05:59:34 +00:00
parent 9d15ea7334
commit 2fd42f7b6c
5 changed files with 12 additions and 8 deletions
+7 -3
View File
@@ -132,9 +132,13 @@ function ConfirmForm() {
{progress.map(x => <>{x}<br /></>)}
</p>
<Form.Button loading={loading} error={error.non_field_errors}>
Submit
</Form.Button>
{success ?
<p><Link to='/'>Return Home</Link> to log in.</p>
:
<Form.Button loading={loading} error={error.non_field_errors}>
Submit
</Form.Button>
}
</Form>
);
};