comparison mod_password_reset/password_reset/password_reset.html @ 3352:f7668aee968a

mod_password_reset: Switch to util.interpolation (our standard template library)
author Matthew Wild <mwild1@gmail.com>
date Tue, 09 Oct 2018 14:09:54 +0100
parents 0ce475235ae1
children 7cede636b3d5
comparison
equal deleted inserted replaced
3351:662f2722f745 3352:f7668aee968a
5 <title>Reset password</title> 5 <title>Reset password</title>
6 <link rel="stylesheet" href="bootstrap.min.css"> 6 <link rel="stylesheet" href="bootstrap.min.css">
7 </head> 7 </head>
8 <body> 8 <body>
9 <div class="container col-md-4 col-md-offset-4" style="margin-top: 100px"> 9 <div class="container col-md-4 col-md-offset-4" style="margin-top: 100px">
10 {message&
11 <div class="alert {classes}">{message}</div>
12 }
10 <div class="panel panel-default"> 13 <div class="panel panel-default">
11 <div class="panel-heading"> 14 <div class="panel-heading">
12 <div class="panel-title">Reset password</div> 15 <div class="panel-title">Reset password</div>
13 </div> 16 </div>
14 17
18 21
19 <form method="post" class="form-horizontal"> 22 <form method="post" class="form-horizontal">
20 <div class="form-group" style="margin-right: 0px;"> 23 <div class="form-group" style="margin-right: 0px;">
21 <label for="user" class="col-sm-2 control-label">Account:</label> 24 <label for="user" class="col-sm-2 control-label">Account:</label>
22 <div class="input-group col-sm-10"> 25 <div class="input-group col-sm-10">
23 <input type="text" name="user" class="form-control" disabled placeholder="{{jid}}"> 26 <input type="text" name="user" class="form-control" disabled placeholder="{jid}">
24 </div> 27 </div>
25 </div> 28 </div>
26 <div class="form-group" style="margin-right: 0px;"> 29 <div class="form-group" style="margin-right: 0px;">
27 <label for="password" class="col-sm-2 control-label">Password:</label> 30 <label for="password" class="col-sm-2 control-label">Password:</label>
28 <div class="input-group col-sm-10"> 31 <div class="input-group col-sm-10">
29 <input type="password" name="password" class="form-control" placeholder="password"> 32 <input type="password" name="password" class="form-control" placeholder="password">
30 </div> 33 </div>
31 </div> 34 </div>
32 <input type="hidden" name="token" value="{{token}}"> 35 <input type="hidden" name="token" value="{token}">
33 <button type="submit" class="btn btn-primary btn-lg">Reset</button> 36 <button type="submit" class="btn btn-primary btn-lg">Reset</button>
34 </form> 37 </form>
35 </div> 38 </div>
36 </div> 39 </div>
37 </div> 40 </div>