mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3052c883a0
Start the U2F signing request when entering in the second factor page so that the user only has to touch the token without any other clicks.
18 lines
647 B
Plaintext
18 lines
647 B
Plaintext
extends layout/layout.pug
|
|
|
|
block variables
|
|
- page_classname = "password-reset-request";
|
|
|
|
block form-header
|
|
h1 Reset password
|
|
|
|
block content
|
|
div
|
|
img(class="header-img" src="/img/password.png" alt="password")
|
|
p After giving your username, you will receive an email to change your password.
|
|
div(class="notification")
|
|
form(class="form-signin")
|
|
div(class="form-inputs")
|
|
input(type="text" class="form-control" name="username" id="username" placeholder="Your username" required="required")
|
|
button(id="reset-password-button" class="btn btn-lg btn-primary btn-block" type="submit") Reset Password
|
|
span(class="clearfix") |