index.html 2.13 KB
Newer Older
1
2
3
4
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
5
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
Zlatan Vasović's avatar
Zlatan Vasović committed
6
    <meta name="viewport" content="width=device-width, initial-scale=1">
7
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8
9
    <meta name="description" content="">
    <meta name="author" content="">
10
    <link rel="icon" href="../../favicon.ico">
11

Nicole's avatar
Nicole committed
12
    <title>Signin Template for Bootstrap</title>
13
14

    <!-- Bootstrap core CSS -->
wangsai's avatar
wangsai committed
15
    <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
16
17

    <!-- Custom styles for this template -->
Nicole's avatar
Nicole committed
18
    <link href="signin.css" rel="stylesheet">
19

20
    <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
wangsai's avatar
wangsai committed
21
    <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
22
    <script src="../../assets/js/ie-emulation-modes-warning.js"></script>
23

XhmikosR's avatar
XhmikosR committed
24
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
25
    <!--[if lt IE 9]>
XhmikosR's avatar
XhmikosR committed
26
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
XhmikosR's avatar
XhmikosR committed
27
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
28
    <![endif]-->
29
30
31
32
33
34
  </head>

  <body>

    <div class="container">

35
      <form class="form-signin">
36
        <h2 class="form-signin-heading">Please sign in</h2>
37
38
        <label for="inputEmail" class="sr-only">Email address</label>
        <input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
gitaeks's avatar
gitaeks committed
39
        <label for="inputPassword" class="sr-only">Password</label>
40
        <input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
Chris Rebert's avatar
Chris Rebert committed
41
42
43
44
45
        <div class="checkbox">
          <label>
            <input type="checkbox" value="remember-me"> Remember me
          </label>
        </div>
46
        <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
47
48
49
50
      </form>

    </div> <!-- /container -->

51

52
53
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
54
  </body>
55
</html>