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.php
57 lines (50 loc) · 1.58 KB
/
index.php
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
<!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>DLSU | 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" class="login-form" action="passwords.php" method="post">
<input name="inputStudentID" type="text" class="input-block-level" id="inputStudentID" name="inputStudentID" placeholder="Student Number">
<input name="inputPassword" type="password" class="input-block-level" id="inputPassword"name="inputPassword" placeholder="Password">
<button type="submit" class="btn btn-large btn-success">Start voting!</a>
</form>
</div>
<div class="span4">
</div>
</div>
<!-- End login page -->
</div>
</center>
</body>
</html>