This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (66 loc) · 2.19 KB
/
index.html
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
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<!--
Copyright 2013
Layout by Kristoffer Ross Cruz and Ian De Jesus
Made with Bootstrap v2.3.2
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* CSS Designed and built with all the love in the world @twitter by @mdo and @fat.
-->
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>AniVote | Login</title>
<link rel="stylesheet" href="css/bootstrap.css"/>
<link rel="stylesheet" href="css/bootstrap-responsive.css"/>
</head>
<body>
<script src="js/jquery-2.0.2.min.js"></script>
<script src="js/bootstrap.js"></script>
<center>
<div class="hero-unit">
<!-- Start header -->
<img src="img/stc-header2.png"/>
<h1>Exercise your right to vote!</h1>
<br/>
<!-- End header -->
<!-- Start login page -->
<div class="container row-fluid">
<div class="span4">
</div>
<div class="span4">
<!--I added this to test out the passwords.php-->
<form class="form-signin" action="passwords.php" method="post">
<input name="inputStudentID" type="text" class="input-block-level" placeholder="Student Number">
<input name="inputPassword" type="password" class="input-block-level" placeholder="Password">
<button type="submit">Start voting!</a>
</form>
</div>
<div class="span4">
</div>
</div>
<!-- End login page -->
</div>
</center>
<!-- Start pop-up --><!--
<div id="termsAndConditions" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="modalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="modalLabel">Terms and Conditions</h3>
</div>
<div class="modal-body">
<p>You are under oath that you will not share your vote to anyone and that you are protecting the confidentiality of your vote, just as we will.
</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">I Disagree</button>
<button class="btn btn-success">I Agree</button>
</div>
</div>
<!-- End pop-up -->
</body>
</html>