-
Notifications
You must be signed in to change notification settings - Fork 2
/
profilepage.html
38 lines (33 loc) · 938 Bytes
/
profilepage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Home</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 ng-app="">
<h1 class="welcome"> Hello! </h1>
<span id='logout' onclick="location.href='login.html'">Log Out</span>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="listing">
<span class="need" onclick="location.href='postneed.html'">Need A Ride?</span>
<span class="offer" onclick="location.href='postoffer.html'">Offer A Ride</span>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<u><h1 class="title">Active Ride Requests</h1></u>
<div id="requests">
<span class="items">Carla Rodreiguez<img src="img/smallcancel.png" class="cancel"></span>
</body>
</html>