-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhtml.html
44 lines (44 loc) · 1.32 KB
/
html.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Carpooling</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Carpooling</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">My Requests</a></li>
<li><a href="#">My Rides</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Logout</a></li>
</ul>
</nav>
</header>
<main>
<h2>Create a New Carpooling Request</h2>
<form id="carpoolingForm">
<label for="location">Location:</label><br>
<input type="text" id="location" name="location" required><br>
<label for="destination">Destination:</label><br>
<input type="text" id="destination" name="destination" required><br>
<label for="date">Date:</label><br>
<input type="date" id="date" name="date" required><br>
<label for="time">Time:</label><br>
<input type="time" id="time" name="time" required><br>
<button type="submit">Submit</button>
</form>
<h2>My Carpooling Requests</h2>
<ul id="myRequests"></ul>
<h2>My Rides</h2>
<ul id="myRides"></ul>
</main>
<footer>
<p>© 2023 Carpooling</p>
</footer>
<script src="front.js"></script>
</body>
</html>