-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="store.css">
<link rel="stylesheet" type="text/css" href="common.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./exobot.png" type="image/png">
<title>Exokit | Store</title>
<!-- <meta name="keywords" content="Exokit, WebXR, VR, Cryptocurrency, JavaScript, Metamask, Metaverse">
<meta name="description" content="Store WebXR content in a Ethereum blockchain made for the Web.">
<meta name="author" content="Exokit"> -->
</head>
<body>
<header>
<img src="logo.svg" class="icon grow" id="logo">
<nav class="selected">
<span>Store</span>
</nav>
<form class="login-form phase-1" id="login-form">
<div class="phase-content">
<div class="login-notice" id="login-notice"></div>
<div class="login-error" id="login-error"></div>
</div>
<div class="phase-content phase-1-content">
<input type="email" placeholder="[email protected]" id="login-email">
<input type="submit" value="Log in" class="button highlight">
</div>
<div class="phase-content phase-2-content">
<input type="text" placeholder="Verification code" id="login-verification-code">
<input type="submit" value="Verify" class="button highlight">
</div>
<div class="phase-content phase-3-content">
<button class="user-button" id="user-button">
<img src="exobot.png">
<span class="name" id="login-email-static"></span>
</button>
<input type="submit" value="Log out" class="button highlight" id="logout">
</div>
<div class="phase-content phaseless-content">
<div>Working...</div>
</div>
</form>
</header>
<div id="nav-popout" tabindex="1"></div>
<div class="cardContainer" id="cardContainer"></div>
<div id="metamaskWarning">
<img id="metamaskImg" src="./metamask.png">
<h3><a href="https://metamask.io/" target="_blank">Metamask Extension</a> required to use Exokit Store.</h3>
</div>
<script type="module" src="store.js"> </script>
</body>
</html>