forked from dfinity/internet-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 967 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
:root {
}
body {
margin: 0;
font-family: Helvetica, Arial, Sans-Serif;
}
img {
}
main {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
section {
padding: 1em 0;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Internet Identity Demo Webapp</title>
</head>
<body>
<main>
<h1>Internet Identity Demo Webapp</h1>
<section>
<label for="iiUrl">Internet Identity URL:</label>
<input size="50" id="iiUrl" type="text" />
</section>
<section>
<button id="loginBtn">Login with Internet Identity</button>
</section>
<section id="loginStatus">
<p>Not logged in</p>
</section>
</main>
<script type="module" src="/index.ts"></script>
</body>
</html>