-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·50 lines (50 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alcohol Detector</title>
<link rel="stylesheet" href="bootstrap-3.3.5-dist/css/bootstrap.css">
</head>
<style>
.outside-row{
margin-top: 30px;
margin-bottom: 30px
}
.inside-row{
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
}
.container{
margin-top: 100px;
}
</style>
<body>
<div class="container">
<div class="col-md-4"></div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Login</h3>
</div>
<form action="login.php" method="GET">
<div class="panel-body">
<div class="row inside-row">
Password: <input type="password" name="pwd">
</div>
<div class="row text-center">
<button type="submit" class="btn btn-success text-center">
Login
</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-4"></div>
</div>
</body>
<script>
</script>
</html>