aboutsummaryrefslogtreecommitdiff
path: root/src/forgot-password.jade
diff options
context:
space:
mode:
Diffstat (limited to 'src/forgot-password.jade')
-rw-r--r--src/forgot-password.jade45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/forgot-password.jade b/src/forgot-password.jade
new file mode 100644
index 0000000..ef814a7
--- /dev/null
+++ b/src/forgot-password.jade
@@ -0,0 +1,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