aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-05-25 01:00:00 +0300
committerGravatar Vitaly Takmazov2022-05-25 01:00:00 +0300
commitef9b61ebf7a9025747f715b98c4d8fcd98531b91 (patch)
tree02193a2a74d85f3e0f025f36be5fa343bf4b9120 /src/main/resources
parentb7959bc83f8bff6e9aa6663fd7b432fbd3aa971b (diff)
Add autocomplete hints to login/signup forms
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/templates/layouts/login.html4
-rw-r--r--src/main/resources/templates/views/signup.html6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/templates/layouts/login.html b/src/main/resources/templates/layouts/login.html
index 0f9d0a1b..e89f6790 100644
--- a/src/main/resources/templates/layouts/login.html
+++ b/src/main/resources/templates/layouts/login.html
@@ -267,9 +267,9 @@
<form action="/login" method="POST">
<p class="err">{{ authErrorMessage | default('') }}</p>
<input class="txt" type="text" name="username" placeholder='{{ i18n("messages","label.username") }}'
- id="nickinput" />
+ id="nickinput" autocomplete="username" />
<input class="txt" type="password" name="password"
- placeholder='{{ i18n("messages","label.password") }}' />
+ placeholder='{{ i18n("messages","label.password") }}' autocomplete="current-password" />
<input class="submit" type="submit" value="OK" />
</form>
</div>
diff --git a/src/main/resources/templates/views/signup.html b/src/main/resources/templates/views/signup.html
index d6eb921f..d3742734 100644
--- a/src/main/resources/templates/views/signup.html
+++ b/src/main/resources/templates/views/signup.html
@@ -21,7 +21,7 @@
<input type="submit" value="Связать с этим аккаунтом"/>
{% else %}
<p>Имя пользователя: <input type="text" name="username"/></p>
- <p>Пароль: <input type="password" name="password"/></p>
+ <p>Пароль: <input type="password" name="password" autocomplete="current-password" /></p>
<p><input type="submit" value=" OK "/></p>
{% endif %}
</form>
@@ -34,9 +34,9 @@
<input type="hidden" name="action" value="new"/>
<input type="hidden" name="type" value="{{ type }}"/>
<input type="hidden" name="hash" value="{{ hash }}"/>
- <p>Имя пользователя: <input type="text" name="username" id="username"/><br/><i>(От 2-х до 16-и латинских символов
+ <p>Имя пользователя: <input type="text" name="username" id="username" autocomplete="username" /><br/><i>(От 2-х до 16-и латинских символов
и/или цифр, дефис)</i></p>
- <p>Пароль: <input type="password" name="password"/><br/><i>(от 6-и до 32-х символов)</i></p>
+ <p>Пароль: <input type="password" name="password" autocomplete="new-password"/><br/><i>(от 6-и до 32-х символов)</i></p>
<p><input type="submit" value=" OK "/></p>
</form>
{% endif %}