forked from ammarlodhi255/travel-and-tour-agency-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
49 lines (43 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./signup.css" />
<title>Sign Up</title>
</head>
<body>
<div class="sign-up">
<div onclick="openLoginForm()" class="close-btn">×</div>
<div class="form">
<h2 id="signup-title">Create a new account</h2>
<div class="signup-element">
<label for="name">Name</label>
<input type="text" id="name" placeholder="Enter your name" />
</div>
<div class="signup-element">
<label for="email">Email</label>
<input type="text" id="email" placeholder="Enter your email" />
</div>
<div class="signup-element">
<label for="phone">Phone Number</label>
<input type="text" id="phone" placeholder="Enter your phone number" />
</div>
<div class="signup-element">
<label for="password">Password</label>
<input
type="password"
id="password"
placeholder="Enter your password"
/>
</div>
<div class="signup-element">
<button class="signup">Sign Up</button>
<br /><br />
</div>
</div>
</div>
<script type="text/javascript" src="./signup.js"></script>
</body>
</html>