-
Notifications
You must be signed in to change notification settings - Fork 1
/
profilepage.html
43 lines (36 loc) · 1.23 KB
/
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
39
40
41
42
43
<!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'>
</head>
<body>
<h1 class="welcome"> Hello! </h1>
<form action='/logout' method='get'><button id='logout' type='submit'>Log Out</button></form>
<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>
<h1 class='title middle' id='push'>Active Ride Requests</h1>
<h1 class='title middle'>Active Ride Offers</h1>
<div class="list" id='extra_margin'>
<div class="items">
<form method='get' action='/delete_request'>
<input type='image' src="img/smallcancel.png" class="cancel" alt='Submit'>
</form>
</div>
</div>
<div class="list">
<div class="items">
<form method='get' action='/delete_request'>
<input type='image' src="img/smallcancel.png" class="cancel" alt='Submit' >
</form>
<form method='post' action='/load_results'>
<input type='image' src="img/results.png" class="results_link" alt='Submit'>
</form>
</div>
</div>
</body>
</html>