-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
32 lines (31 loc) · 1.42 KB
/
signUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/signUp.css">
<link rel="icon" type="image/png" href="/images/brand.png"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<title>My brand</title>
</head>
<body>
<main>
<section id="signup">
<div class="signupWrapper">
<h1>Sign up</h1>
<form id="myForm" onsubmit="return signUp(event)">
<input type="username" name="username" placeholder="Type your username..."><br>
<input type="email" name="email" placeholder="Type your email..."><br>
<input type="password" name="password" id="password" placeholder="Type your password...">
<span id="passwordError" class="error"></span><br>
<button type="submit"><span class="log">Sign Up</span> <div class=""></div></button>
<p>forgot your password?</p>
</form>
<h3>Already have an account <a href="index.html"><b>Login</b></a></h3>
</div>
</section>
</main>
<script src="/ServerSide/users/signup.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
</body>
</html>