-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwedding.html
More file actions
127 lines (114 loc) · 5.22 KB
/
Copy pathwedding.html
File metadata and controls
127 lines (114 loc) · 5.22 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wedding Planner</title>
<!-- jQuery UI CSS -->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="style/wedding.css">
<!-- jQuery -->
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<!-- jQuery UI -->
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="script/wedding.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>Tatiana and Daniel's Wedding Day</h1>
<!--
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">People</a></li>
<li role="presentation"><a href="#">Tables</a></li>
<li role="presentation"><a href="#">View</a></li>
</ul>
-->
<div id="wp-tables" class="row col-xs-9">
<div class='form-group has-feedback'>
<input type='text' id='btn-add-table' class='form-control' placeholder='Add table...' />
<i class='glyphicon glyphicon-plus form-control-feedback'></i>
</div>
<div class='row draggable-tables'>
<!-- Add Tables here -->
<div id="draggable2" class='draggable wp-table col-xs-3' >
<div class="panel panel-default">
<div class="panel-heading">
<span class="panel-title">Table 2</span>
<button type="button" class='btn btn-xs btn-default btn-remove pull-right'>
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</button>
</div>
<div class="panel-body">
<ul id='sortable2' class="sortable connectedSortable list-group">
<li class="list-group-item">
Daniel
<button type="button" class='btn btn-xs btn-default btn-rm-guest pull-right'>
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span>
</button>
</li>
<li class="list-group-item">
Tatiana
<button type="button" class='btn btn-xs btn-default btn-rm-guest pull-right'>
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span>
</button>
</li>
</ul>
<div class='form-group has-feedback'>
<input type='text' class='add-person form-control' placeholder='Add person' />
<i class='glyphicon glyphicon-user form-control-feedback'></i>
</div>
</div>
</div>
</div>
<!-- End tables -->
</div>
</div>
<div id="others" class='row wp-table col-xs-3' >
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Remaining</h3>
</div>
<div class="panel-body">
<ul class="sortable connectedSortable list-group">
</ul>
<div class='form-group has-feedback'>
<input type='text' class='add-person form-control' placeholder='Add person' />
<i class='glyphicon glyphicon-user form-control-feedback'></i>
</div>
<!-- Button trigger modal -->
<button type="button" class="btn btn-default btn-xs pull-right" data-toggle="modal" data-target="#myModal">
Import
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Import guests</h4>
</div>
<div class="modal-body">
<textarea cols="60" rows="20"></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button id="import-guests" type="button" class="btn btn-primary" data-dismiss="modal">Import</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>