consistent block structure for login form overrides

- `{name}_input` for overriding full input
- `{name}_input_attrs` for overriding input element attributes (not including id).
  Use `super()` to extend.
- For all `name` in username, password, otp
This commit is contained in:
Min RK
2025-02-19 13:07:45 +01:00
parent 0521270862
commit 681a7ae840

View File

@@ -35,9 +35,10 @@
{% if login_error %}<p class="login_error">{{ login_error }}</p>{% endif %}
<input type="hidden" name="_xsrf" value="{{ xsrf }}" />
{# Allow full override of the "label" and "input" elements of the username and password fields. #}
{% block username_password_input_override %}
{% block username_input %}
<label for="username_input">Username:</label>
<input id="username_input"
{% block username_input_attrs %}
type="text"
autocapitalize="off"
autocorrect="off"
@@ -46,25 +47,28 @@
name="username"
val="{{ username }}"
autofocus="autofocus"
{# allow adding extra HTML Input Attributes (pattern, placeholder, title, minlenght, maxlenght, ...) #}
{% block username_input_attribs %}{% endblock username_input_attribs %}
/>
{% endblock username_input_attrs %} />
{% endblock username_input %}
{% block password_input %}
<label for='password_input'>Password:</label>
<input type="password"
<input id="password_input"
{% block password_input_attrs %}
type="password"
class="form-control"
autocomplete="current-password"
name="password"
id="password_input"
{# allow adding extra HTML Input Attributes (pattern, placeholder, title, minlenght, maxlenght, ...) #}
{% block password_input_attribs %}{% endblock password_input_attribs %}
/>
{% endblock username_password_input_override %}
{% endblock password_input_attrs %} />
{% endblock password_input %}
{% if authenticator.request_otp %}
<label for='otp_input'>{{ authenticator.otp_prompt }}</label>
<input class="form-control"
{% block otp_input %}
<label for="otp_input">{{ authenticator.otp_prompt }}</label>
<input id="otp_input"
{% block otp_input_attrs %}
class="form-control"
autocomplete="one-time-password"
name="otp"
id="otp_input" />
{% endblock otp_input_attrs %} />
{% endblock otp_input %}
{% endif %}
<div class="feedback-container">
<input id="login_submit"