-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
51 lines (48 loc) · 2.13 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moonsic SignUp</title>
<link rel="icon" type="image/x-icon" href="Assets/moon.png">
<link rel="stylesheet" href="login.css">
</head>
<body>
<header>
<div class="left_bx1">
<div class="login_content">
<form method="post">
<h3>SignUp</h3>
<div class="login_card">
<label for="name">Name</label>
<input type="text" name="Username" placeholder="Enter your username. . . " required id="">
</div>
<div class="login_card">
<label for="email">Email</label>
<input type="email" name="Email" placeholder="Enter your email address. . . " required id="">
</div>
<div class="login_card">
<label for="password">Password</label>
<input type="password" name="user_password" placeholder="Enter password. . . " required id="">
</div>
<div class="login_card">
<label for="re-password">Re-Password</label>
<input type="re-password" name="user_re_password" placeholder="Re-Enter password. . . " required id="">
</div>
<input type="submit" value="Sign Up" class="submit">
<div class="check">
<input type="checkbox" name="" id=""><span>Remember me</span>
</div>
<p>Arleady have an account! <a href="login.html">Login</a></p>
</form>
</div>
</div>
<div class="right_bx1">
<img src="Assets/login_bg.png" alt="website_preview" width="85%" class="laptop">
<h3>Incorrect Password</h3>
</div>
</header>
<script src="app.js"></script>
<script src="https://kit.fontawesome.com/54b6994b08.js" crossorigin="anonymous"></script>
</body>
</html>