Blame view

backend/makest/register.html 2.34 KB
d1f8bd40   Alexey Boroda   first commit
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  <!DOCTYPE html>
  <html>
  
  <head>
  
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
      <title>INSPINIA | Register</title>
  
      <link href="css/bootstrap.min.css" rel="stylesheet">
      <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
      <link href="css/plugins/iCheck/custom.css" rel="stylesheet">
      <link href="css/animate.css" rel="stylesheet">
      <link href="css/style.css" rel="stylesheet">
  
  </head>
  
  <body class="gray-bg">
  
      <div class="middle-box text-center loginscreen   animated fadeInDown">
          <div>
              <div>
  
                  <h1 class="logo-name">IN+</h1>
  
              </div>
              <h3>Register to IN+</h3>
              <p>Create account to see it in action.</p>
              <form class="m-t" role="form" action="login.html">
                  <div class="form-group">
                      <input type="text" class="form-control" placeholder="Name" required="">
                  </div>
                  <div class="form-group">
                      <input type="email" class="form-control" placeholder="Email" required="">
                  </div>
                  <div class="form-group">
                      <input type="password" class="form-control" placeholder="Password" required="">
                  </div>
                  <div class="form-group">
                          <div class="checkbox i-checks"><label> <input type="checkbox"><i></i> Agree the terms and policy </label></div>
                  </div>
                  <button type="submit" class="btn btn-primary block full-width m-b">Register</button>
  
                  <p class="text-muted text-center"><small>Already have an account?</small></p>
                  <a class="btn btn-sm btn-white btn-block" href="login.html">Login</a>
              </form>
              <p class="m-t"> <small>Inspinia we app framework base on Bootstrap 3 &copy; 2014</small> </p>
          </div>
      </div>
  
      <!-- Mainly scripts -->
      <script src="js/jquery-2.1.1.js"></script>
      <script src="js/bootstrap.min.js"></script>
      <!-- iCheck -->
      <script src="js/plugins/iCheck/icheck.min.js"></script>
      <script>
          $(document).ready(function(){
              $('.i-checks').iCheck({
                  checkboxClass: 'icheckbox_square-green',
                  radioClass: 'iradio_square-green',
              });
          });
      </script>
  </body>
  
  </html>