//- Web Frontend for Botleagues Copyright (C) 2015 Camil Staps 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 . 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