-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
126 lines (109 loc) · 5.18 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<title>Signup</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/checkbox.css">
<!--===============================================================================================-->
</head>
<body>
<!-- Header -->
<div class="header">
<a href="signin.html" class="logo">Tour Mate</a>
<div class="header-right">
<a href="index.html">SignIn</a>
<a class="active" href="signup.html">SignUp</a>
<a href="aboutus/aboutus.html">About us</a>
</div>
</div>
<!-- Content -->
<div class="bg-contact3" style="background-image: url('images/home_slider.jpg');">
<div class="container-contact3">
<div class="wrap-contact3">
<form class="contact3-form validate-form" name="myForm" onsubmit="return validateForm()" class="login100-form validate-form" method="POST" action="signup.php">
<div class="wrap-input3 validate-input" data-validate="Enter your name">
<input class="input3" type="text" name="name" placeholder="name">
<span class="focus-input3"></span>
</div>
<div>
<span ><label class="input3" name="gender">Gender</label><br/>
<label class="container">Male
<input type="radio" name="gender" value="male">
<span class="checkmark"></span>
</label>
<label class="container">Female
<input type="radio" name="gender" value="female">
<span class="checkmark"></span>
</label>
<label class="container">Other
<input type="radio" name="gender" value="other">
<span class="checkmark"></span>
</label>
</span></div>
<div class="wrap-input3 validate-input" data-validate = "Valid email is required: [email protected]">
<input class="input3" type="text" name="email" placeholder="Your Email">
<span class="focus-input3"></span>
</div>
<div class="wrap-input3 validate-input" data-validate = "Enter your DOB">
<input class="input3" type="date" name="dob" placeholder="Enter DOB">
<span class="focus-input3"></span>
</div>
<div class="wrap-input3 validate-input" data-validate = "Password is required">
<input class="input3" type="password" name="pass" placeholder="password">
<span class="focus-input3"></span>
</div>
<div class="wrap-input3 validate-input" data-validate = "Password is required">
<input class="input3" type="password" name="pass" placeholder="Re-enter password">
<span class="focus-input3"></span>
</div>
<div class="container-contact3-form-btn">
<button class="contact3-form-btn" type ="submit" name="signin">
Submit
</button>
</div>
</form>
</div>
</div>
</div>
<div id="dropDownSelect1"></div>
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<script>
$(".selection-2").select2({
minimumResultsForSearch: 20,
dropdownParent: $('#dropDownSelect1')
});
</script>
<!--===============================================================================================-->
<script src="js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-23581568-13');
</script>
</body>
</html>