-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
134 lines (101 loc) · 4.95 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>WSC Ride Share</title>
<meta name="description" content="An interactive getting started guide for Brackets.">
<link rel="stylesheet" href="styleSheet.css">
<link href="https://fonts.googleapis.com/css?family=Black+Ops+One" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://www.gstatic.com/firebasejs/5.9.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.0/firebase-firestore.js"></script>
</head>
<body>
<div class="appName">
<h1>WSC Ride Share</h1>
</div>
<div class="navBar">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="requests.html">Requests</a></li>
<li><a href="managePosts.html">Manage Posts</a></li>
</ul>
</div>
<div class="searchBar">
<form class="searchBar" action="/action_page.php">
<input type="text" placeholder="Where do you need to go?" name="search">
<button type="submit"><img src="magnifyingGlass.gif"></button>
</form>
</div>
<!--<div class="postedAlert">You are now registered!</div>-->
<div id="postingForm">
<form class="postingForm">
<label for="destination">Destination</label><br>
<input type="text" id="destination" name="destination" placeholder="City"><br>
<label for="location">Location</label><br>
<input type="text" id="location" name="location" placeholder="Signing Hills"><br>
<label for="date">Date going</label><br>
<input type="text" id="dateGoing" name="dateGoing" placeholder="2/21/2019">
<br>
<label for="departureTime">Departure time</label><br>
<input type="text" id="departureTime" name="departureTime" placeholder="5:00 PM"><br>
<label for="arrivalTime">Arrival time</label><br>
<input type="text" id="arrivalTime" name="arrivalTime" placeholder="6:00 PM"><br>
<label for="returnTime">Return time</label><br>
<input type="text" id="returnTime" name="returnTime" placeholder="7:00 PM"><br>
<label for="seats">Seats available</label><br>
<input type="text" id="seats" name="seats" placeholder="3"><br>
<label class="tirpDescription" for="tripDescription">Trip Description</label><br>
<input type="text" id="tripDescription" name="tripDescription" class="tirpDescription" placeholder="Will be making a quick trip to Walmart and back..."><br>
<input type="submit" class="button" value="Submit">
<!--<input type="submit" class="button" value="Submit">
<!-- <script>
var input = document.getElementById("myInput");
input.addEventListener("keyup", function(event) {
if (event.keyCode === 13) {
event.preventDefault();
document.getElementById("myBtn").click();
}
});
</script>-->
</form>
</div>
<!-- <div class="row">
<div class="post">
<div>
<img src="circleProfile.png" alt="User photo">
<div class="name">John L. Doe</div>
<div>Destination: <span class="postInfo">City Name</span></div>
<div>Location: <span class="postInfo">Walmart</span></div>
<div>Date: <span class="postInfo">2/21/2019</span></div>
<table>
<tr>
<th>Departure</th>
<th>Arrival</th>
<th>Return</th>
<th>Seats</th>
</tr>
<tr>
<td>5:00 PM</td>
<td>6:00 PM</td>
<td>9:00 PM</td>
<td>4</td>
</tr>
</table>
<div>
<p>Email: [email protected] <span class="postInfo">(712) 987-6543</span>
<p></p>
</div>
<div class="description">
<p>Description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc finibus vestibulum lectus in convallis. Sed id mauris tempor, pharetra tortor eu, suscipit mauris. Sed consectetur mauris orci, scelerisque congue lectus venenatis egestas. Integer id sed.
</p>
</div>
</div>
</div>
</div> -->
<div class="feedContainer" id="feed">
</div>
<script src="index.js"></script>
</body>
</html>