-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
74 lines (69 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/just-validate@latest/dist/just-validate.production.min.js" defer></script>
<script src="validation.js" defer></script>
</head>
<body>
<section class="sign">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()" ></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="aboutUs.html">ABOUT</a></li>
<li><a href="login.php">SIGN IN</a></li>
<li><a href="Shop.php">SHOP</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu"></i>
</nav>
<h1> Welcome To Our Community </h1>
</section>
<div class="signup-box">
<h1>Sign Up</h1>
<h4> It is free!</h4>
<form action="signup.php" method="post" id="signup" novalidate>
<div>
<label for="artisan_ID"> ID </label>
<input type="text" id="artisan_ID" name="artisan_ID">
</div>
<div>
<label for="fiestname"> First Name </label>
<input type="text" id="firstname" name="firstname">
</div>
<div>
<label for="lastname"> Last Name </label>
<input type="text" placeholder="" id="lastname" name="lastname">
</div>
<div>
<label for="gender"> Gender </label>
<select id="gender" name="gender">
<option value="">Select Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="email"> Email </label>
<input type="email" placeholder="" id="email" name="email">
</div>
<div>
<label for="password"> Password </label>
<input type="password" placeholder="" id="password" name="password">
</div>
<div>
<label for="password_confirmation"> Confirm Password </label>
<input type="password" placeholder="" id="password_confirmation" name="password_confirmation">
</div>
<button >Sign Up</button>
</form>
<p> By clicking the sign up button, you agree to our <br>
<a href="#">Terms and conditions</a> and <a href="#"> Policies</a> </p>
<p class="para-2"> Already signed up? <a href="login.php"> Login here.</a></p>
</div>
</body>
</html>