-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·70 lines (65 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<title>Title</title>
<style id="dev-style">
html, body {
margin: 0;
height: 100%;
}
.dev-navbar {
position: absolute;
left: 0;
display: flex;
font-family: sans-serif;
flex-direction: column;
z-index: 123213;
}
.dev-navbar a {
display: inline-flex;
color: inherit;
text-decoration: inherit;
padding: 10px;
text-align: center;
border: 1px solid #dedede;
text-decoration: none;
}
#app {
height: 100%;
}
@media (max-width: 1200px) {
.dev-navbar {
display: none;
}
}
</style>
</head>
<body>
<div class="pa__dev-navbar">
<a href="/signin"> Login </a>
<a href="/signup"> Register </a>
<a href="/signin/consent"> Consent </a>
<a href="/signin/passwordless/email"> Passwordless Email </a>
<a href="/signin/passwordless/sms"> Passwordless Sms </a>
<a href="/signin/passwordless/otp"> Passwordless OTP </a>
<a href="/signin/passwordless/push"> Passwordless Push </a>
<a href="/account/verifyEmail"> VerifyEmail </a>
<a href="/account/updateMissingInformation"> Fill Missing </a>
<a href="/account/resetPassword/token"> Password Reset </a>
<a href="/signin/recovery"> Password Recovery </a>
<a href="/signin/challenge"> Challenge </a>
<a href="/signin/challenge/sms"> SMS </a>
<a href="/signin/challenge/email"> EMAIL </a>
<a href="/signin/challenge/otp"> OTP </a>
<a href="/signin/challenge/fv"> FingerVein </a>
<a href="/signin/challenge/push"> Push </a>
<a href="/signin/challenge/webauthn"> WebAuthN </a>
</div>
<div id="pa__app">
</div>
<script src="/dev.ts" type="module"></script>
</body>
</html>