forked from StarkArnab/glorious-calendar-2511
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
91 lines (86 loc) · 3.07 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<link rel="stylesheet" href="./CSS/signup.css" />
<!-- <script src="https://www.google.com/recaptcha/api.js" async defer></script> -->
</head>
<body>
<!-- MAIN SIGNUP PAGE ...................................................................... -->
<h1>REGISTER</h1>
<form action="" id="registration_form">
<div id="main">
<div>
<div>
<label for="name">Name *</label>
</div>
<input type="text" placeholder="Name" id="name" required>
</div>
<div>
<div>
<label for="email">Email *</label>
</div>
<input type="text" placeholder="Email" id="email" required>
</div>
<div>
<div>
<label for="password">Password *</label>
</div>
<input type="password" placeholder="Password" id="password" autocomplete="on" required>
</div>
<div>
<div>
<label for="phone">Phone Number</label>
</div>
<input type="text" placeholder="Phone Number" id="phone">
</div>
<div>
<div>
<label for="addressLine">Address Line</label>
</div>
<input type="text" placeholder="Address Line" id="addressLine">
</div>
<div>
<div>
<label for="city">Suburb/City *</label>
</div>
<input type="text" placeholder="Suburb/City" id="city" required>
</div>
<div>
<div>
<label for="state">State/Province *</label>
</div>
<input type="text" placeholder="states" id="state" required>
</div>
<div>
<div>
<label for="zip">Zip/Postcode *</label>
</div>
<input type="text" placeholder="Zip/Postcode" id="zip" required>
</div>
<div>
<div>
<label for="country">Country *</label>
</div>
<select id="country" required>
<option value="" disabled selected>Choose a Country</option>
</select>
</div>
<div>
<div>
<label for="company">Company Name</label>
</div>
<input type="text" placeholder="Company Name" id="company">
</div>
<!-- <form action="?" method="POST"> -->
<!-- <div class="g-recaptcha" data-sitekey="6LfjOgMnAAAAAJyOOemQ7lZpeUCsmBiyZKbJ4TqC"></div> -->
<button type="button" id="register">CREATE ACCOUNT</button>
<!-- </form> -->
</div>
</form>
<script src="./Script/signup.js" type="module">
</script>
</body>
</html>