-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 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
36
37
38
<html>
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="css/global.css" type="text/css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12"></div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!--start form-->
<form class="form-container" method="POST" action="login.php">
<h1>Login</h1>
<div class="form-group">
<label for="username">Username*</label>
<input name="username" type="username" class="form-control" id="username" placeholder="Username" required>
</div>
<div class="form-group">
<label for="pass">Password*</label>
<input name="pass" type="password" class="form-control" id="pass" placeholder="Password" required>
</div>
<a href="#.html" style="color:dodgerblue">#</a>
<p></p>
<button type="submit" class="btn btn-success btn-block">Submit</button>
</form>
<!--end form-->
</div>
<div class="col-md-4 col-sm-4 col-xs-12"></div>
</div>
</div>
</body>
</html>