comparison mod_password_reset/password_reset/password_reset.html @ 3344:0ce475235ae1

mod_password_reset: New module for self-service password resets via a web page
author Matthew Wild <mwild1@gmail.com>
date Tue, 02 Oct 2018 16:09:17 +0100
parents
children f7668aee968a
comparison
equal deleted inserted replaced
3343:2e65160187a4 3344:0ce475235ae1
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Reset password</title>
6 <link rel="stylesheet" href="bootstrap.min.css">
7 </head>
8 <body>
9 <div class="container col-md-4 col-md-offset-4" style="margin-top: 100px">
10 <div class="panel panel-default">
11 <div class="panel-heading">
12 <div class="panel-title">Reset password</div>
13 </div>
14
15 <div class="panel-body" style="padding: 20px">
16
17 <p>Please enter a new password.</p>
18
19 <form method="post" class="form-horizontal">
20 <div class="form-group" style="margin-right: 0px;">
21 <label for="user" class="col-sm-2 control-label">Account:</label>
22 <div class="input-group col-sm-10">
23 <input type="text" name="user" class="form-control" disabled placeholder="{{jid}}">
24 </div>
25 </div>
26 <div class="form-group" style="margin-right: 0px;">
27 <label for="password" class="col-sm-2 control-label">Password:</label>
28 <div class="input-group col-sm-10">
29 <input type="password" name="password" class="form-control" placeholder="password">
30 </div>
31 </div>
32 <input type="hidden" name="token" value="{{token}}">
33 <button type="submit" class="btn btn-primary btn-lg">Reset</button>
34 </form>
35 </div>
36 </div>
37 </div>
38 </body>
39 </html>