blob: ef814a73d08465a81c21cdf03dadd1be41fdedd8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
//-
Web Frontend for Botleagues
Copyright (C) 2015 Camil Staps <info@camilstaps.nl>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
extends ./include/layout-main.jade
block menu
-var selected = null
block header
-var header_jumbotron = false
-var header_title = 'Password reset'
block content
.row
.col-lg-6: div.well.bs-component: form#password-reset-form-1(action='#')
.form-group
label.control-label(for='password-reset-email') Email
input.form-control#password-reset-email(type='email',placeholder='Email')
.form-group: button.btn.btn-default(type='submit') Send reset token
.col-lg-6(style='display:none;'): div.well.bs-component: form#password-reset-form-2(action='#')
.form-group
label.control-label(for='password-reset-token') Token (sent to your email address)
input.form-control#password-reset-token(type='text',placeholder='Password Reset Token')
.form-group
label.control-label(for='password-reset-password') New password
input.form-control#password-reset-password(type='password',placeholder='Choose a new password')
.form-group
label.control-label(for='password-reset-password-2') New password (confirmation)
input.form-control#password-reset-password-2(type='password',placeholder='Enter password again')
.form-group: button.btn.btn-default(type='submit') Reset password
|