forked from tanmayy-mishra/dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver.html
37 lines (33 loc) · 1.55 KB
/
driver.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" type="text/css" href="frontui.css"> -->
<link rel="stylesheet" href="Style.css">
<link rel="stylesheet" href="dropdown.css">
<script src="dropdown.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>P2P-CARPOOLING-DAPP</title>
</head>
<body>
<section class="alignC">
<div class="mainhead">
<h1><strong>P2P CARPOOLING</strong></h1>
</div>
<div class="boxT">
<form>
<label for="date"><b>Date</b></label><br>
<input type="date" id="date" name="date"><br>
<label for="entry location"><b>Entry Location</b></label><br>
<input type="text" id="entry location" name="entry location"><br>
<label for="entry time"><b>Entry Time</b></label><br>
<input type="time" id="entry time" name="entry time"><br>
<label for="exit location"><b>Exit Location</b></label><br>
<input type="text" id="exit location" name="exit location"><br>
<label for="exit time"><b>Exit Time</b></label><br>
<input type="time" id="exit time" name="exit time"><br>
</form>
<button class="button">Add Listing</button>
</div>
</body>