-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.html
More file actions
49 lines (39 loc) · 1.64 KB
/
signup.html
File metadata and controls
49 lines (39 loc) · 1.64 KB
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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login - Rarry</title>
<link href="src/index.css" rel="stylesheet" />
<link href="src/login.css" rel="stylesheet" />
<meta name="author" content="ddededodediamante" />
<meta name="description" content="Login to Rarry" />
<meta name="keywords" content="Rarry, block coding, Scratch, visual programming, game maker, online coding" />
<meta name="theme-color" content="#3b82f6" />
<meta property="og:title" content="Rarry" />
<meta property="og:image" content="icons/Rarry.svg" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Rarry" />
<meta name="twitter:description" content="Login to Rarry" />
<meta name="twitter:image" content="icons/Rarry.svg" />
</head>
<body>
<div class="info">
<img src="icons/Rarry.svg" alt="Rarry logo" onclick="location.href = '/'" style="cursor: pointer" />
<h2>Create a new account</h2>
<a href="/login" style="text-decoration: underline">Or login to existing account</a>
<p>Username</p>
<input type="text" id="username" />
<div id="username-error" class="input-error" style="display: none"></div>
<p>Password</p>
<input type="password" id="password" />
<div id="password-error" class="input-error" style="display: none"></div>
<button id="login">
<i class="fa-solid fa-right-to-bracket"></i>
Sign up
</button>
</div>
<script type="module" src="src/scripts/signup.js"></script>
</body>
</html>