aboutsummaryrefslogtreecommitdiffstats
path: root/login.htm
blob: 1259f8ae740ac7ad9d6943c8938ed9766c1dc42d (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Login</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
    <link href="static/wedding.css" rel="stylesheet">
  </head>
  <body>
    <div class="container">
      <div class="row">
        <img class="center-block" src="static/banner1.jpg" alt="banner">
      </div>
      <div class="row login">
        <div class="col-md-offset-4 col-md-offset-6">
          <form id = "connection" action="/login/" role="form"
                class="form-horizontal" method="post">
            <div class="form-group">
              <label class="radio-inline">
                <input type="radio">English
              </label>
              <label class="radio-inline">
                <input type="radio">Francais
              </label>
              <label class="radio-inline">
                <input type="radio">Nasi
              </label>
          </div>
          <div class="form-group">
	        <label for="name" class="col-md-2">Name:</label>
            <div class="col-md-4">
	          <input type="text" id="name" class="form-control"
                     name="username" placeholder="Name"/>
            </div>
          </div>
          <div class="form-group">
	        <label for="password" class="col-md-2">Password:</label>
            <div class="col-md-4">
	          <input type="password" id="password" class="form-control"
                     name="password" placeholder="Password"/>
            </div>
          </div>
          <div class="col-md-offset-2">
            <button type="submit" class="btn btn-primary" name="login">
              Login
            </button>
          </div>

        </form>
        </div>
      </div>
    </div>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    <script type="text/javascript" src="/static/wedding.js"></script>
  </body>
</html>