add "re-enter password" field on form

for #14.
This commit is contained in:
Harvey Tindall
2020-11-04 20:46:06 +00:00
parent 34135d645d
commit ba601935b5
7 changed files with 47 additions and 4 deletions
+2
View File
@@ -9,6 +9,8 @@
"emailAddress": "Email",
"username": "Username",
"password": "Password",
"reEnterPassword": "Re-enter Password",
"reEnterPasswordInvalid": "Passwords are not the same.",
"createAccountButton": "Create Account",
"passwordRequirementsHeader": "Password Requirements",
"successHeader": "Success!",
+2
View File
@@ -10,6 +10,8 @@
"emailAddress": "Email",
"username": "Pseudo",
"password": "Mot de passe",
"reEnterPassword": "Confirmez mot de passe",
"reEnterPasswordInvalid": "Les mots de passe ne correspondent pas.",
"createAccountButton": "Créer le compte",
"passwordRequirementsHeader": "Mot de passe requis",
"successHeader": "Succes!",
+1
View File
@@ -3,6 +3,7 @@
window.bs5 = {{ .settings.bs5 }};
window.usernameEnabled = {{ .settings.username }};
window.validationStrings = JSON.parse({{ .lang.validationStrings }});
window.invalidPassword = "{{ .lang.reEnterPasswordInvalid }}";
</script>
<script src="form.js" type="module"></script>
{{ end }}
+4
View File
@@ -86,6 +86,10 @@
<label for="inputPassword">{{ .lang.password }}</label>
<input type="password" class="form-control" id="inputPassword" name="password" placeholder="{{ .lang.password }}" required>
</div>
<div class="form-group">
<label for="inputPassword">{{ .lang.reEnterPassword }}</label>
<input type="password" class="form-control" id="reInputPassword" onkeyup="window.checkPassword()" placeholder="{{ .lang.password }}" required>
</div>
<div class="btn-group" role="group" aria-label="Button & Error" id="errorBox" style="margin-top: 1rem;">
<button type="submit" class="btn btn-outline-primary" id="submitButton">
<span id="createAccount">{{ .lang.createAccountButton }}</span>