forked from AdaGold/trek
-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
54 lines (43 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sky Treks</title>
<link rel="stylesheet" href="styles/foundation.css" type="text/css">
<link rel="stylesheet" href="styles/trek.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
</head>
<body>
<h1 class='add-margin-lf'>Sky Treks!</h1>
<button type="button" class="button add-margin-lf round-edges" id="all-trips-button" name="button">Check Out Trips!</button>
<div class="row">
<table class='small-12 medium-3 columns continent-trips'>
<tr class='continent-trips-header'>
</tr>
<tbody class='continent-trips-body'>
</tbody>
</table>
<section id="trip-details" class="small-12 medium-5 columns">
</section>
<form id="add-reservation-form" class="small-12 medium-3 columns">
<label for="name">Name:</label>
<input type="text" name="name" class="round-edges">
<label for="age">Age:</label>
<input type="text" name="age" class="round-edges">
<label for="email">Email:</label>
<input type="text" name="email" class="round-edges">
<input type="hidden" name="trip-id" class="trip-id">
<button type="submit" class="button round-edges">Book Reservation Now</button>
</form>
</div>
<table class='all-trips add-margin'>
<tr class='trips-header'>
</tr>
<tbody class='trips-body'>
</tbody>
</table>
<script src="https://code.jquery.com/jquery-3.1.1.js"type="text/javascript"></script>
<script src="scripts/ajax-index.js" type="text/javascript"></script>
<!-- <script src="scripts/extra2.js" type="text/javascript"></script> -->
</body>
</html>