-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
57 lines (49 loc) · 1.56 KB
/
login.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
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body>
<style>
* {
font: normal 30px Arial,sans-serif;
}
body {
background-color: #037;
color: white;
background-image: url('https://www.axon-e.de/flo/hackspace/binary_kitchen/website/logo.svg' );
background-repeat: repeat;
background-size: 300%;
background-position: -200px -100px;
}
form {
position: relative;
display: block;
width: auto;
text-align: center;
}
input {
position: relative;
display: block;
width: auto;
width: 100%;
}
button {
width: 100%;
margin-top: 40px;
}
</style>
<form name="login" method="post">
<label for="u">User</label>
<input id="u" type="text" name="u">
<label for="p">Pass</label>
<input id="p" type="password" name="p">
<input type="hidden" name="c" value="%c%">
<button name="action" value="open">Open</button>
<hr/>
<button name="action" value="lock">Lock</button>
</form>
</body>
</html>