-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotp.html
50 lines (47 loc) · 1.1 KB
/
otp.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>
<head>
<meta charset="utf-8"/>
<title>OTP Authentication</title>
<style>
body {
margin: 0px;
font-family: monospace;
background: radial-gradient(circle at 10% 10%, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%) no-repeat center center fixed;
font-size: 150%;
color: #222222;
}
input {
background: rgba(255, 255, 255, 0.5);
border: 2px solid;
border-radius: 8px;
padding: 1%;
font-size: 120%;
font-weight: bold;
color: #444444;
}
.elem {
margin: 2%;
}
#login {
text-align: center;
margin: auto;
margin-top: 10%;
}
</style>
</head>
<body>
<form action="/login-otp" method="post" id="login">
<div class="elem">
<h1>Please authenticate with TOTP algorithm</h1>
</div>
<div class="elem">
<label>Code:</label>
<input type="text" name="code"/>
</div>
<div class="elem">
<input type="submit" value="Confirm"/>
</div>
</form>
</body>
</html>