aboutsummaryrefslogtreecommitdiff
path: root/src/register.jade
blob: e7a06dc4a7a517a9c24ecc06bd9b98159fd0074c (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 = '/register'

block header
  -var header_title = 'Register'

block content
  .row
    .col-lg-6
      div.well.bs-component
        h4 Register
        form.form-register(action='#')
          .form-group
            label(for="register-email") Email
            input.form-control#register-email(type='email',name='email',placeholder="Enter email")
          .form-group
            label(for="register-password") Password
            input.form-control#register-password(type='password',name='password',placeholder="Enter password")
          .form-group
            label(for="register-password2") Password (confirmation)
            input.form-control#register-password2(type='password',name='password',placeholder="Enter password again")
          .checkbox: label
            input#accepts-toc(type='checkbox',name="accepts-toc")
            | I accept the terms and conditions
          button.btn.btn-lg.btn-success.pull-right(type='submit') Register
          br(style='clear:both;')