-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
76 lines (68 loc) · 3.18 KB
/
index.php
File metadata and controls
76 lines (68 loc) · 3.18 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
<!doctype html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<title>Availability Sheet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div ng-view></div>
<!-- Modal -->
<div id="modalFormAvailability" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Log absence</h3>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="date">Date</label>
<div class="controls">
<input type="text" id="date" placeholder="Date">
</div>
</div>
<div class="control-group">
<label class="control-label" for="hours">Hours</label>
<div class="controls">
<input type="text" id="hours" placeholder="Hours">
</div>
</div>
<div class="control-group">
<label class="control-label" for="absence_type_id">Absence Type</label>
<div class="controls">
<select>
<option>Select</option>
<option>Type 1</option>
<option>Type 2</option>
<option>Type 3</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="comment">Comment</label>
<div class="controls">
<textarea class="span3" type="comment" id="comment" placeholder="Comments"></textarea>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
<script src="http://code.angularjs.org/1.0.6/angular.min.js"></script>
<script src="js/moment.js"></script>
<script src="js/moment-range.js"></script>
<script src="js/app/app.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>