-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostneed.html
26 lines (21 loc) · 977 Bytes
/
postneed.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Welcome to Ride Share!</title>
<link rel="stylesheet" href="css/pages.css" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>
</head>
<body>
<img src="img/cancel.png" onclick="location.href='profilepage.html'" id="back">
<h1 class="title">Need a Ride?</h1>
<form class="listing" method="post" action="/postneed">
<span class="word" >*From: <input name="From"></span>
<span class="word right">*To: <input name="To" ></span>
<span class="word" >*Departure Time: <input name="DptTime" type="time"></span>
<span class="word right">*Arrival Time: <input name="ArvTime" type="time"></span>
<span class="word"><button type="submit" value="submit" id="makeoffer" >Submit</button></span>
</form>
</body>
</html>