-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost-create-date.html
45 lines (41 loc) · 1.36 KB
/
host-create-date.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
<!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-categories.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="javascript:addMealTime()" data-transition="slide-in">
Next
<span class="icon icon-right-nav"></span>
</a>
</button>
<h1 class="title">Meal Date</h1>
</header>
<div class="content">
<div id="host-create-date" class="content-padded">
<form>
<h5>What day?</h5>
<input id="meal_day" type="date">
<h5>What time?</h5>
<input id="meal_time" type="time">
</form>
</div>
</div>
</body>
</html>