Skip to content

Commit 5cc868a

Browse files
authored
Create admin.html
1 parent 622c5b8 commit 5cc868a

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

views/admin.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Low impact authentication via SMS</title>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<!-- import the webpage's stylesheet -->
10+
<link rel="stylesheet" href="/style.css">
11+
<script src="/client.js" defer></script>
12+
</head>
13+
14+
<body>
15+
<header>
16+
<h1>
17+
Low-impact authentication via SMS
18+
</h1>
19+
</header>
20+
21+
<main>
22+
<h2>
23+
Invite people to your application
24+
</h2>
25+
26+
<form action="/invite">
27+
<label>Phone number:
28+
<input type="phone" id="phone" name="phone" autocomplete="phone" />
29+
</label>
30+
31+
<label>Username (optional):
32+
<input type="text" id="username" name="username" autocomplete="username" />
33+
</label>
34+
35+
<input type="submit" value="Invite" id="invite_btn" />
36+
<h3 id="feedback"></h3>
37+
</form>
38+
39+
</main>
40+
41+
</body>
42+
43+
</html>

0 commit comments

Comments
 (0)