mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Write a nice form to reset your password
This commit is contained in:
parent
5a806ca99e
commit
7228d68149
@ -15,7 +15,11 @@
|
|||||||
"hello": "Hallo"
|
"hello": "Hallo"
|
||||||
},
|
},
|
||||||
"password-reset": {
|
"password-reset": {
|
||||||
"title": "Passwort zurücksetzen"
|
"title": "Passwort zurücksetzen",
|
||||||
|
"form": {
|
||||||
|
"description": "Eine Mail zum Zurücksetzen des Passworts wird an die angegebene E-Mail Adresse geschickt.",
|
||||||
|
"submit": "Email anfordern"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"editor": {
|
"editor": {
|
||||||
"placeholder": "Schreib etwas Inspirierendes..."
|
"placeholder": "Schreib etwas Inspirierendes..."
|
||||||
|
|||||||
@ -15,7 +15,11 @@
|
|||||||
"hello": "Hello"
|
"hello": "Hello"
|
||||||
},
|
},
|
||||||
"password-reset": {
|
"password-reset": {
|
||||||
"title": "Reset your password"
|
"title": "Reset your password",
|
||||||
|
"form": {
|
||||||
|
"description": "A password reset email will be sent to the given email address.",
|
||||||
|
"submit": "Request email"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"editor": {
|
"editor": {
|
||||||
"placeholder": "Leave your inspirational thoughts..."
|
"placeholder": "Leave your inspirational thoughts..."
|
||||||
|
|||||||
@ -3,9 +3,26 @@
|
|||||||
<ds-flex>
|
<ds-flex>
|
||||||
<ds-flex-item :width="{ base: '100%' }" centered>
|
<ds-flex-item :width="{ base: '100%' }" centered>
|
||||||
<ds-space style="text-align: center;" margin-top="small" margin-bottom="xxx-small" centered>
|
<ds-space style="text-align: center;" margin-top="small" margin-bottom="xxx-small" centered>
|
||||||
<ds-heading tag="h3">
|
<ds-card class="password-reset-card">
|
||||||
{{ $t('password-reset.title') }}
|
<ds-space margin="large">
|
||||||
</ds-heading>
|
<form>
|
||||||
|
<ds-input
|
||||||
|
:placeholder="$t('login.email')"
|
||||||
|
type="email"
|
||||||
|
name="email"
|
||||||
|
icon="envelope"
|
||||||
|
/>
|
||||||
|
<ds-space margin-botton="large">
|
||||||
|
<ds-text>
|
||||||
|
{{ $t('password-reset.form.description') }}
|
||||||
|
</ds-text>
|
||||||
|
</ds-space>
|
||||||
|
<ds-button primary fullwidth name="submit" type="submit" icon="sign-in">
|
||||||
|
{{ $t('password-reset.form.submit') }}
|
||||||
|
</ds-button>
|
||||||
|
</form>
|
||||||
|
</ds-space>
|
||||||
|
</ds-card>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
</ds-flex-item>
|
</ds-flex-item>
|
||||||
</ds-flex>
|
</ds-flex>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user