-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (34 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logto experience sample</title>
<link rel="icon" href="./favicon.ico" />
<script type="module" src="src/index.ts"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div class="app">
<form>
<img fetchpriority="high" class="logo" src="https://logto.io/logo.svg" alt="Logto branding logo" />
<div class="input-field">
<label for="email">Email</label>
<div class="flex-wrapper">
<input type="text" name="email" required />
<button class="button" style="width: 100px;">Send code</button>
</div>
</div>
<div class="input-field">
<label for="verification-code">Verification code</label>
<input type="text" name="verification-code" required />
</div>
<button class="submit-button" type="submit">
<span>Register</span>
<div class="spinner"></div>
</button>
</form>
<div class="error-message hidden"></div>
</div>
</body>
</html>