mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-03-21 17:24:28 -05:00
Merge 7aab645679 into dff3511808
This commit is contained in:
commit
230e72578f
|
|
@ -332,6 +332,7 @@
|
|||
"confirmPassword": "Confirm password",
|
||||
"email": "Email",
|
||||
"miiName": "Mii name",
|
||||
"birthdate": "Birthdate",
|
||||
"forgotPassword": "Forgot your password?",
|
||||
"registerPrompt": "Don't have an account?",
|
||||
"loginPrompt": "Already have an account?"
|
||||
|
|
|
|||
|
|
@ -370,6 +370,7 @@
|
|||
"confirmPassword": "Confirmez le mot de passe",
|
||||
"email": "Email",
|
||||
"miiName": "Surnom du Mii",
|
||||
"birthdate": "Date de naissance",
|
||||
"forgotPassword": "Mot de passe oublié ?",
|
||||
"registerPrompt": "Pas encore inscrit ?"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@
|
|||
<input name="mii_name" id="mii_name" value="{{ mii_name }}" maxlength=10 required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="birthday">Birthday</label> {{! TODO - Add this to weblate, hard-coding for now to just push it out }}
|
||||
<label for="birthday">{{ locale.account.loginForm.birthdate }}</label>
|
||||
<input type="date" id="birthday" name="birthday">
|
||||
</div>
|
||||
<br>
|
||||
<div>
|
||||
<label for="password">{{ locale.account.loginForm.password }}</label>
|
||||
<input name="password" id="password" type="password" autocomplete="new-password" minlength="6" maxlength="16" required>
|
||||
<input name="password" id="password" type="password" autocomplete="new-password" minlength="6" maxlength="16" passwordrules="minlength: 6; maxlength: 16; max-consecutive: 2; allowed: [-!-~];" pattern="[-!-~]{6,16}" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="password_confirm">{{ locale.account.loginForm.confirmPassword }}</label>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user