-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost-create-summary.html
More file actions
40 lines (36 loc) · 1.26 KB
/
host-create-summary.html
File metadata and controls
40 lines (36 loc) · 1.26 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="ratchet/css/ratchet.min.css" rel="stylesheet">
<link href="ratchet/css/ratchet-theme-ios.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<script src="ratchet/js/ratchet.min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<header class="bar bar-nav">
<button class="btn btn-link btn-nav pull-left">
<a href="../host-create-guests.html" data-transition="slide-out">
<span class="icon icon-left-nav"></span>
Back
</a>
</button>
<h1 class="title">New Meal Summary</h1>
</header>
<div class="content">
<div id="host-create-summary" class="content-padded" style="text-align:center;">
<h4 id="title"></h4>
<h5 id="time"></h5>
<h5 id="guests"></h5>
<h5 id="costs"></h5>
<h5 id="total"></h5>
<h5>
<a class="btn btn-primary btn-block" href="javascript:addMeal()" data-transition="fade">Confirm</a>
</div>
</div>
</body>
</html>