-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsignup.html
86 lines (75 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup | TravelYaari</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" href="../CSS/nav1.css">
<link rel="stylesheet" href="../CSS/signup.css">
<link rel="stylesheet" href="../CSS/footer.css">
</head>
<body>
<div id="navigation"></div>
<script>
$(document).ready(function() {
$('#navigation').load("nav0.html");
});
</script>
<div class="container" id="signup-container-shadow">
<div class="row display-flex">
<div class="col-xs-12 col-sm-6 col-md-4 col-md-offset-2" id="signup-intro-form">
<!-- <div class="signup-container1"> -->
<form id="signup-form" class="signup-form">
<h2 style="font-size:30px;font-weight: 600;color: honeydew;">Signup</h2>
<div class="signup-form-control">
<label for="username">Username</label>
<input type="text" id="username" placeholder="Enter Username">
<small>Error message</small>
</div>
<div class="signup-form-control">
<label for="email">Email</label>
<input type="text" id="email" placeholder="Enter Email">
<small>Error message</small>
</div>
<div class="signup-form-control">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter Password">
<small>Error message</small>
</div>
<div class="signup-form-control">
<label for="password2">Confirm Password</label>
<input type="password" id="password2" placeholder="Enter Password Again">
<small>Error message</small>
</div>
<button type="submit" onclick="forme()">Submit</button>
<p style="color: rgb(214, 247, 27); margin-top: 1rem;">Already have a Account?
<a href="login.html" class="login">Login</a>
</p>
</form>
</div>
<div class="col-xs-12 col-sm-6 col-md-4" id="signup-intro">
<h2>
Welcome toTravelYaari
</h2>
<p style="text-align: center;">We Are Happy to see you here. We are working to provide the best services to you.</p>
<img class="img-responsive img-rounded" src="../Images/signup/bg2.jpeg" alt="signup image">
<div style="display: flex; justify-content: center;align-items: center; text-align: center; font-size: 18px;color: rgb(235, 212, 162);margin-top: 2rem;">
<p>By Signin,<br>We Agree to our terms and Services</p>
</div>
<p style="text-align:center;margin-top: 1rem;">Lets Explore the World !!!!</p>
</div>
</div>
</div>
<div id="foot"></div>
<script src="../JS/signup.js "></script>
<script>
$(document).ready(function() {
$('#foot').load("footer.html");
});
</script>
</body>
</html>