summaryrefslogtreecommitdiff
path: root/lib/index.html
blob: 58fdedb30fefd88125513db1b2f63633b88d6cf0 (plain)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Hello World</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
    <script type="text/javascript" charset="utf-8">
      $(function(){
        $('form').submit(function(event){
          event.preventDefault();
        });
      });
    </script>
  </head>
  <body>
    <div class="container">
      <div class="row">
        <div class="col-md-4"></div>
        <div class="col-md-4">
          <ul id="notifications" class="hide"> </ul>
          <form class="form-signin" action="#">
            <h2 class="form-signin-heading">Hello World</h2>
            <label for="inputEmail">Email address</label>
            <input type="email" id="inputEmail" class="form-control">
            <label for="inputPassword">Password</label>
            <input type="password" id="inputPassword" class="form-control">
            <div class="checkbox">
              <label>
                <input type="checkbox" value="remember-me"> Remember me
              </label>
            </div>
            <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
          </form>
        </div>
        <div class="col-md-4"></div>
      </div>
      <div class="row">
        <div class="col-md-4"></div>
        <div class="col-md-4">
          <!--
          <h3>Validation Rules</h3>
          <ul>
            <li>Validate email address</li>
            <li>Password must be a minimum of 10 characters</li>
            <li>Disable 'Login' Button until both email and password is entered.</li>
            <li>Autofocus on email input</li>
            <li>Add an 'Email' and 'Password' placeholder.</li>
          </ul>
          -->
        </div>
        <div class="col-md-4"></div>
      </div>
    </div>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  </body>
</html>