aboutsummaryrefslogtreecommitdiffstats
path: root/login.htm
blob: 82f1840e0f6eb9f86c3303cd7216cbd6805df524 (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
62
63
64
<!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-6">
          <form id = "connection" action="/login/" role="form"
                class="form-horizontal" method="post">
            <div class="form-group">
              <label for="language" class="col-md-2 control-label">Language:</label>
              <div class="col-md-10">
                <label class="radio-inline">
                  <input type="radio" name="language">English
                </label>
                <label class="radio-inline">
                  <input type="radio" name="language">Francais
                </label>
                <label class="radio-inline">
                  <input type="radio" name="language">Nasi
                </label>
              </div>
              <br/>
            </div>
            <div></div>
            <div class="form-group">
	          <label for="name" class="col-md-2 control-label">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 control-label">
              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>