-
Notifications
You must be signed in to change notification settings - Fork 2
/
postoffer.html
29 lines (24 loc) · 1.23 KB
/
postoffer.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
<!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">Offer a Ride</h1>
<div class="listing" ng-app="">
<span class="word" >*From: <input ng-model="From"></input></span>
<span class="word" id="one" >*To: <input ng-model="To" ></input></span>
<span class="word" >*Departure Time: <input ng-model="Departure" type="time"></input></span>
<span class="word" id="two">*Arrival Time: <input ng-model="Arrival" type="time"></input></span>
<span class="word">*Date: <input ng-model="Date" type="date"></input></span>
<span class="word" id="three">Price: <input ng-model="price" type="currency"></input></span>
<span class="word">*Spots Available: <input ng-model="spot"></input></span>
<span class="word" id="four"><input type="submit" value="submit" id="makeoffer"></input></span>
</div>
</body>
</html>