-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
43 lines (37 loc) · 1.69 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Login</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="css/index.css" type="text/css" rel="stylesheet">
<!--<script src="../js/jquery-cookie-master/src/jquery.cookie.js"></script>-->
</head>
<body>
<div class="container-fluid">
<div id="form">
<center><h2>Log In</h2></center>
<form id="login-form" method="post" action="php/login.php">
<div class="form-group">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"><label for="username">Username</label></div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8"><input type="text" required class="form-control" id="username" name="username" placeholder="Username"></div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"><label for="password">Password</label></div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8"><input type="password" required class="form-control" id="password" name="password" placeholder="Password"></div>
</div>
</div>
<center><input type="submit" class="btn btn-default" value="Log In"></input></center>
</form>
<br>
<center><a href="html/signup.html" class="btn btn-default">Sign Up</a></center>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/index.js" type="text/javascript"></script>
</body>
</html>