This repository has been archived by the owner on Oct 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
75 lines (75 loc) · 2.93 KB
/
main.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
<html>
<head>
<title>Southwest Checkin Command</title>
</head>
<body>
<div class="content main">
<div class="content scheduler well">
<div class="field confirmation form-group">
<label>Confirmation number</label>
<input type="text" class="form-control"></input>
</div>
<div class="field first_name form-group">
<label>First name</label>
<input type="text" class="form-control"></input>
</div>
<div class="field last_name form-group">
<label>Last name</label>
<input type="text" class="form-control"></input>
</div>
<div class="field time form-group">
<label>Time</label>
<div class='input-group date' id='datetimepicker'>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
<div class="buttons">
<span class="forward toggle glyphicon glyphicon-arrow-right"></span>
<button class="cancel btn btn-default">Clear</button>
<button class="submit btn btn-primary">Submit</button>
</div>
</div>
<div class="content table well">
<table class="table table-striped">
<thead>
<tr>
<th>Confirmation</th>
<th>First</th>
<th>Last</th>
<th>Time</th>
<th></th>
<tr>
</thead>
<tbody>
</tbody>
</table>
<div class="buttons">
<span class="back toggle glyphicon glyphicon-arrow-left"></span>
</div>
</div>
</div>
<script type="text/template" class="row template">
<td><%= confirmation %></td>
<td><%= first_name %></td>
<td><%= last_name %></td>
<td><%= moment(time).format("YYYY-MM-DD HH:mm") %></td>
<td class="remove"><span class="glyphicon glyphicon-remove"></span></td>
</script>
<link rel="stylesheet" href="css/vendor/bootstrap.css">
<link rel="stylesheet" href="css/vendor/bootstrap-theme.css">
<link rel="stylesheet" href="css/vendor/bootstrap-datetimepicker.min.css">
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/vendor/jquery.js"></script>
<script type="text/javascript" src="js/vendor/underscore.js"></script>
<script type="text/javascript" src="js/vendor/bootstrap.js"></script>
<script type="text/javascript" src="js/vendor/moment.js"></script>
<script type="text/javascript" src="js/vendor/bootstrap-datetimepicker.js"></script>
<script type="text/javascript" src="js/vendor/backbone.js"></script>
<script type="text/javascript" src="js/vendor/backbone.epoxy.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>`
</html>