-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.html
135 lines (124 loc) · 3.47 KB
/
reset.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
127
128
129
130
131
132
133
134
135
<html>
<head>
<title>Reset Password</title>
<!-- Favicons -->
<link href="assets\img\favicon.png" rel="icon">
<!--CSS-->
<link rel="stylesheet" href="assets\css\style.css">
<!--Font Awesom CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body{
margin-top: 70px;
}
.reset .row {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
align-items: center;
}
.reset .row .image {
flex: 1 1 40rem;
}
.reset .row .image img {
width: 100%;
}
.reset .row form {
flex: 1 1 40rem;
padding: 2rem;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
border-radius: 0.5rem;
}
.reset .row form .inputBox {
padding: 0.5rem 0;
}
.reset .row form .inputBox input {
width: 100%;
padding: 1rem;
border: 0.1rem solid rgba(0, 0, 0, 0.1);
font-size: 1.7rem;
color: #333;
text-transform: none;
}
.reset .row form .inputBox h3 {
font-size: 2rem;
padding: 1rem 0;
color: #666;
}
a, p{
font-size: 15px;
}
.btn{
border-radius: 5px;
}
</style>
</head>
<body>
<!-- header section starts -->
<header>
<div>
<!-- <img src="D:\travel\images\Safar_Logo.png" height="50px" width= "80px"> -->
<a href="index.html" class="logo"><span>S</span>afar</a>
</div>
<div id="menu-bar" class="fas fa-bars"></div>
<nav class="navbar">
<a href="index.html">home</a>
<a href="index.html#services">services</a>
<a href="index.html#review">review</a>
<a href="booking.html">book</a>
<a href="about.html">about us</a>
<a href="index.html#contact">contact</a>
</nav>
<div class="icons">
<i class="fa fa-user" id="login-btn"></i>
</div>
<!--<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here...">
<label for="search-bar" class="fas fa-search"></label>
</form>-->
</header>
<!-- header section ends -->
<!-- Register section starts -->
<section class="reset" id="reset">
<h1 class="heading">
<span>R</span>
<span>e</span>
<span>s</span>
<span>e</span>
<span>t</span>
<span class="space"></span>
<span>P</span>
<span>a</span>
<span>s</span>
<span>s</span>
<span>w</span>
<span>o</span>
<span>r</span>
<span>d</span>
</h1>
<div class="row">
<div class="image">
<img src="assets\svg\book-img.svg" alt="">
</div>
<form action="reset.php" method="post">
<div class="inputBox">
<h3>Email</h3>
<input type="text" name="email" required>
</div>
<div class="inputBox">
<h3>New Password</h3>
<input type="password" name="newpassword" required>
</div>
<div class="inputBox">
<h3>Confirm Password</h3>
<input type="password" name="confirmpassword" required>
</div>
<input type="submit" class="btn" value="Reset Password" name="password"></a>
</form>
</div>
</section>
<!-- Register section ends -->
<!--JS-->
<script src="assets\js\script.js"></script>
</body>
</html>