-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.54 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
<!DOCTYPE html>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="/style.css">
<html>
<body>
<ul class="login">
<form name="signin" class="topsign">
<li><div id="loginMess">User Login:</div></li>
<li><input class="loginField form-control" id="usr" type="text"></input></li>
<li><input class="loginField form-control" id="pass" type="text"></input></li>
<li><button class="loginField btn" id="signin-btn" type="submit">login</input></li>
<li><button class="loginField btn" id="signup-btn" type="submit">register</input></li>
</form>
</ul>
<div align="center" class="viewer">
<h1>Darth Voter</h1>
<div class="mtable"><p>This will be the main table</p>
<div>
<p id="loginMess">Voting Data</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="/javascripts/signin.js"></script>
<script src="/javascripts/signup.js"></script>
<script src="/javascripts/userClient.js"></script>
</body>
</html>