-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (163 loc) · 6.62 KB
/
index.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Clever Girl</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.3.0/animate.css" rel="stylesheet">
<link href="css/mrc.css" rel="stylesheet">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
<script src="js/mrc.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" id="first-nav" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#" id="nav-mrc">MRC DVR</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav pull-right">
<!--Search dropdown and search forms-->
<!--End Search-->
<!--Show user logged in and user options -->
<li>
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button">Logged in as: Pocahontas<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Preferences</a></li>
<li><a href="#">Log Out</a></li>
</ul>
</li>
<!--End User-->
</ul>
</div>
</div>
</div>
<div class="navbar navbar-default navbar-fixed-top" id="second-nav" role="navigation">
<div class="container-fluid">
<button type="button" class="btn btn-info navbar-btn" data-toggle="modal" data-target="#add-record"> Add Record</button>
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Show Name">
<input type="text" class="form-control" placeholder="DVD ID#">
<input type="text" class="form-control" placeholder="Network">
<input type="text" class="form-control" placeholder="Air Date">
</div>
<div class="btn-group" role="group">
<button type="reset" class="btn btn-danger">Reset</button>
<button type="submit" class="btn btn-success">Submit</button>
</div>
</form>
</div>
</div>
<!-- Modal -->
<div id="add-record" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Add Record</h4>
</div>
<div class="modal-body">
<div class="form-group">
<input type="text" class="form-control" placeholder="DVD ID#">
<input type="text" class="form-control" placeholder="Show Name">
<input type="text" class="form-control" placeholder="Network">
<input type="text" class="form-control" placeholder="Air Date">
</div>
</div>
<div class="modal-footer">
<div class="btn-group" role="group">
<button type="button" class="btn btn-warning" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger" data-dismiss="reset">Reset</button>
<button type="button" class="btn btn-success" data-dismiss="submit">Submit</button>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="table-responsive">
<table class="table table-striped table-bordered">
<thead>
<tr class="success">
<th class="col-xs-1" data-sortable="true">DVD ID</th>
<th class="col-xs-3">Show Name</th>
<th class="col-xs-1">Network</th>
<th class="col-xs-1">Air Date</th>
<th class="col-xs-3">Location</th>
<th class="col-xs-1">Duration</th>
<th class="col-xs-2">Operations</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Breaking Dad</td>
<td>AMC</td>
<td>12/12/12</td>
<td>Right behind you...</td>
<td>1:45:30</td>
<td></td>
</tr>
<tr>
<td>2</td>
<td>Dadception</td>
<td>HBO</td>
<td>10/35/4063</td>
<td>In your dreams</td>
<td>30:05:03</td>
<td></td>
</tr>
<tr>
<td>3</td>
<td>Dad of Thrones</td>
<td>Showtime</td>
<td>1/23/53</td>
<td>The lair of dragons</td>
<td>00:05:03</td>
<td></td>
</tr>
<tr>
<td>4</td>
<td>Star Dads: Revenge of the Stepson</td>
<td>Fox</td>
<td>06/12/13</td>
<td>A living room, far far away...</td>
<td>1:25:12</td>
<td></td>
</tr>
<tr>
<td>5</td>
<td>Jurassic Dad: A New Mower</td>
<td>Cinemax</td>
<td>6/15/93</td>
<td>Life uhh uhhh uuuhhh finds a way</td>
<td>03:03:03</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>