Forgot password

This commit is contained in:
Frank
2026-01-03 22:57:45 +01:00
parent c8b0a6e966
commit 499e699dbd
23 changed files with 556 additions and 6 deletions

View File

@@ -15,8 +15,8 @@
{% endif %}
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
<label for="inputEmail">Email</label>
<input type="email" value="{{ last_username }}" name="email" id="inputEmail" class="form-control" autocomplete="email" required autofocus>
<label for="inputUsername">Username</label>
<input type="text" value="{{ last_username }}" name="username" id="inputUsername" class="form-control" autocomplete="username" required autofocus>
<label for="inputPassword">Password</label>
<input type="password" name="password" id="inputPassword" class="form-control" autocomplete="current-password" required>
@@ -38,5 +38,8 @@
<button class="btn btn-lg btn-primary" type="submit">
Sign in
</button>
<div class="mt-3">
<a href="{{ path('app_forgot_password_request') }}">Forgot your password?</a>
</div>
</form>
{% endblock %}