-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdriver update.html
188 lines (154 loc) · 7.05 KB
/
driver update.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE HTML>
<html>
<head>
<title>Car Rental System</title>
<link rel="stylesheet" type="text/css" href="styles/Home_styles.css">
<link rel="stylesheet" type="text/css" href="styles/driver_registration.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/footer.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Actor&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@700&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<script src="js/registration.js"></script>
</head>
<body style="background-color:black">
<div style="background-color:orange; width:100%; height:176px; padding-bottom:20px">
<a href="index.html"><img src="images/LOGO11.png" width = "192" height = "192" class = "logo" style="border-radius:100px; padding-top:2px; padding-left:5px" align = "left"></a>
<div style="padding-top: 1px; padding-left: 10px; padding-right:150px">
<header>
<center><h1 class="monospace"><b>EagleEye Rent-a-Car</b></h1></center>
<p style="position: relative; text-align:right; width:111%; font-size:18px"><a href="Login_driver.php" style="text-decoration:none">LOG OUT </a></p>
</header>
</div>
</div>
<ul class="menu">
<li class="menu"><a href="index.html"><i class="fa fa-home" id="nav-image"></i>Home</a></li>
<li class="menu"><a href="about us.html"><i class="fa fa-user" id="nav-image"></i>About Us</a></li>
<li class="menu"><a href="Rates.php"><i class="fa fa-usd" id="nav-image"></i>Rates</a></li>
<li class="menu"><a href="contactUs.html"><i class="fa fa-phone" id="nav-image"></i>Contact Us</a></li>
</ul>
<div class="contact">
<center><font color="white">Update Your Profile</font></center>
</div>
<div class="container">
<div class="contact-box">
<div class="contact-left">
<div class="wrapper">
<form action="update_driver.php" onsubmit = "return checkPassword()" method="post">
<div class="input-row">
<div class="input-group">
<img style = "float:left; padding-bottom:10px" id="output" width="100" />
<p><input type="file" accept="image/*" name="image" id="file" onchange="loadFile(event)" style="display: none float: left"></p>
<button class="btnUpload" class="up1"><label for="file" style="font-size: 15px; cursor: pointer; text-align:center">Upload Profile Image</label></button><br><br>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Driver ID</label><br>
<input type="text" name="ID" style="font-size:15px; width:118%" placeholder="ID" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>First Name</label><br>
<input type="text" name="fname" style="font-size:15px; width:118%" placeholder="First Name" required>
</div>
<div class="input-group">
<label>Last Name</label><br>
<input type="text" name="lname" style="font-size:15px; width:118%" placeholder="Last Name" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Date of Birth</label><br>
<input type="date" name="DOB" style="font-size:15px; width:130%" required>
</div>
<div class="input-group">
<label>Your Email Address</label><br>
<input type="text" name="email" style="font-size:15px; width:200%" placeholder="E mail" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Phone Number</label><br>
<input type="text" name="pNumber" style="font-size:15px; width:130%" placeholder="Phone number" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Gender</label><br>
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" required>
<label for="female">Female</label><br>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Driving license number<font color="red">*</font></label><br>
<input type="text" name="drivingLicenseNo" style="font-size:15px; width:118%" placeholder="Driving license number" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Create Password<font color="red">*</font></label><br>
<input type="password" id="pass" name="pass" style="font-size:15px; width:131%" placeholder="Create Password" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Confirm Password<font color="red">*</font></label><br>
<input type="password" id="rpass" name="rpass" style="font-size:15px; width:131%" placeholder="Confirm Password" required>
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Attach Copy of NIC and Driving License<font color="red">*</font></label><br>
<div class="file-upload">
<button class="file-upload__button" type="button">Choose File(s)</button>
<span class="file-upload__label">No file(s) selected</span>
</div>
</div>
</div>
<br>
<input type="submit" class="send" name="update" value="UPDATE">
<input type="submit" class="reset" name="delete" value="DELETE">
<br><br><br><br>
</form>
</div>
</div>
</div>
</div>
<footer style="background-color:#283c5f; width:100%; height:200px; padding-top:2px">
<div class="main-content">
<div class="left box1">
<h4><a href="#">QUICK LINKS</a></h4>
<h5><a href="index.html">HOME</a></h5>
<h5><a href="https://distancecalculator.globefeed.com/India_Distance_Calculator.asp">DISTANCE CALCULATOR</a></h5>
<h5><a href="terms.html">TERMS & CONDITIONS</a></h5>
</div>
<div class="left box2">
<h4><a href="#"></a></h4>
<h5><a href="Rates.php">RATES</a></h5>
<h5><a href="about us.html">ABOUT US</a></h5>
<h5><a href="contactUs.html">CONTACT US</a></h5>
<h5><a href="policy.html">PRIVACY POLICY</a></h5>
</div>
<img src="images/LOGO12.png" width = "170px" height = "170px" class = "logo" style="padding-top:15px; padding-left:10px; padding-right:230px" align = "center">
<div class="right box3">
<h4><font color="white">FOLLOW US</font></h4>
<div class="social">
<a href="#"><span class="fa fa-facebook"></span></a>
<a href="#"><span class="fa fa-twitter"></span></a>
<a href="#"><span class="fa fa-instagram"></span></a>
<a href="#"><span class="fa fa-youtube"></span></a>
</div>
</div>
</div>
</footer>
<h5 align="center" style = "font-family: 'Poppins', sans-serif"><font color="white">Copyright 2024. All Rights Reserved. Designed by Shyleja.S</font></h5>
</body>
</html>