-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (40 loc) · 1.96 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
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Autobioscrypt</title>
<script src="/node_modules/web3/dist/web3.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="views/style.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="views/background.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<br><br><br><br><br><br>
<div class="jumbotron d-flex align-items-center">
<div class="container">
<div class="text-center">
<h1>Autobio !</h1> <br>
<form name="f1" action="http://localhost:3000/login" method="post">
<div class="form-group col-xs-6" style="font-family: sans-serif;" >
<label for="username">Username</label>
<input class="form-control" id="username" type="text" name="username" id="username" required/>
</div>
<div class="form-group col-xs-6" style="font-family: sans-serif;">
<label for="password">Password</label>
<input class="form-control" id="password" type="password" name="password" id="password" required/>
</div>
<div class="form-group-lg col-xs-12">
<input style="color: black;font-family: sans-serif;" class="btn btn-info" type="submit" id="submit" value="Login"/>
</div>
</form>
</div>
</div>
</div>
</body>
</html>