-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
35 lines (32 loc) · 1.52 KB
/
sign-up.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>Sign-up</title>
<link rel="stylesheet" href="sign-up.css">
</head>
<body>
<main>
<div class="signup">
<!-- <img src="https://www.mobelhomestore.com/cdn/shop/collections/bedroomset_1200x1200.png?v=1670843893" id="image"> -->
<img src="https://www.dropicts.com/wp-content/uploads/furniture-photography.jpeg" id="image">
<form >
<div class="forms"> <h1>Sign Up</h1><br><br>
<label for="name" class="form">Name</label><input type="text" placeholder="Name..." id="name" required /><br>
<label for="email" class="form">Email</label><input type="email" placeholder="Email..." id="email"required /><br>
<label for="username" class="form">UserName</label><input type="text" placeholder="Username..." id="username" required/><br>
<label for="password" class="form">Password</label><input type="password" placeholder="Password..." id="pwd" required/><br>
<label for="confirmpassword" class="form">Confirm Password</label><input type="password" placeholder="Password..." id="cpwd" required/><br><br>
<input type="checkbox" class="form" required/> <label for="conditions">I have read and understood the Terms and Conditions properly.</label><br><br>
<button id="submit" onclick="sign()">Submit!</button>
</div>
</form>
</div>
</main>
<footer>
</footer>
</body>
<script src="signup-login.js">
</script>
</html>