-
Notifications
You must be signed in to change notification settings - Fork 0
/
host-create-cost.html
54 lines (50 loc) · 1.61 KB
/
host-create-cost.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">
<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>
<button class="btn btn-link btn-nav pull-right" >
<a href="../host-create-summary.html" data-transition="slide-in">
Next
<span class="icon icon-right-nav"></span>
</a>
</button>
<h1 class="title">Meal Cost</h1>
</header>
<div class="content">
<div class="content-padded">
<form>
<h5>How much do you want to charge per person?</h5>
<select>
<option>$1</option>
<option>$2</option>
<option>$3</option>
<option>$4</option>
<option>$5</option>
<option>$6</option>
<option>$7</option>
<option>$8</option>
<option>$9</option>
<option>$10</option>
</select>
</form>
</div>
</div>
</body>
</html>