-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanager_view.html
More file actions
169 lines (124 loc) · 6.8 KB
/
manager_view.html
File metadata and controls
169 lines (124 loc) · 6.8 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
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Appointer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" type="text/css"
media="screen and (max-device-width: 480px)"
href="style-sheet-small.css" >
<link rel="stylesheet" type="text/css"
media="screen and (min-device-width: 480px)"
href="style-sheet-medium.css" >
<link rel="stylesheet" type="text/css"
media="screen and (min-device-width: 786px)"
href="style-sheet-large.css" >
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="default.css" />
<link rel="stylesheet" type="text/css" href="component.css" />
<script src="validation.js"></script>
</head>
<body>
<div class="background">
<!-- START OF TOOLBAR -->
<nav>
<ul class="toolbar__wrapper">
<a href="Appointer-Home.html"><img src="Photos/Logo.png" class="toolbarLogo"></a>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#myprofile">Book Meeting</a></li>
<li><a href="#addstylist">Add Stylist</a></li>
<li><a href="#myprofile">My Profile</a></li>
<li><a href="#logout">Logout</a></li>
</ul>
</nav>
<!-- END OF TOOLBAR -->
<div id ="employee__wrapper" class="employee_wrapper">
<div class="main">
<ul id="og-grid" class="og-grid scrollable">
<li>
<a href="#" >
<div class="employeeInfo">
<img id="employeeProfilePic" class="employeeProfile" src="Photos/curlers.jpeg" alt="Stylist Image"/>
<div id="employeeName" class="employeeName">Stylist Name</div>
<div id="employeeAppointments" class="employeeWriteUp">Appointments:</div>
<br>
<div id="employeeHours" class="employeeWriteUp">Hours Booked:</div>
<div id="employeeCancellation" class="employeeWriteUp">Cancellation Requests:
<img class="iconAlert" src="Photos/1.png" alt="Stylist Image"/>
</div>
</div>
</a>
</li>
<li>
<a href="#" >
<div class="employeeInfo">
<img id="employeeProfilePic" class="employeeProfile" src="Photos/curlers.jpeg" alt="Stylist Image"/>
<div id="employeeName" class="employeeName">Stylist Name</div>
<div id="employeeAppointments" class="employeeWriteUp">Appointments:</div>
<br>
<div id="employeeHours" class="employeeWriteUp">Hours Booked:</div>
<div id="employeeCancellation" class="employeeWriteUp">Cancellation Requests:
<img class="iconAlert" src="Photos/1.png" alt="Stylist Image"/>
</div>
</div>
</a>
</li>
<li>
<a href="#" >
<div class="employeeInfo">
<img id="employeeProfilePic" class="employeeProfile" src="Photos/curlers.jpeg" alt="Stylist Image"/>
<div id="employeeName" class="employeeName">Stylist Name</div>
<div id="employeeAppointments" class="employeeWriteUp">Appointments:</div>
<br>
<div id="employeeHours" class="employeeWriteUp">Hours Booked:</div>
<div id="employeeCancellation" class="employeeWriteUp">Cancellation Requests:
<img class="iconAlert" src="Photos/1.png" alt="Stylist Image"/>
</div>
</div>
</a>
</li>
<li>
<a href="#" >
<div class="employeeInfo">
<img id="employeeProfilePic" class="employeeProfile" src="Photos/curlers.jpeg" alt="Stylist Image"/>
<div id="employeeName" class="employeeName">Stylist Name</div>
<div id="employeeAppointments" class="employeeWriteUp">Appointments:</div>
<br>
<div id="employeeHours" class="employeeWriteUp">Hours Booked:</div>
<div id="employeeCancellation" class="employeeWriteUp">Cancellation Requests:
<img class="iconAlert" src="Photos/1.png" alt="Stylist Image"/>
</div>
</div>
</a>
</li>
<li>
<a href="#" >
<div class="employeeInfo">
<img id="employeeProfilePic" class="employeeProfile" src="Photos/curlers.jpeg" alt="Stylist Image"/>
<div id="employeeName" class="employeeName">Stylist Name</div>
<div id="employeeAppointments" class="employeeWriteUp">Appointments:</div>
<br>
<div id="employeeHours" class="employeeWriteUp">Hours Booked:</div>
<div id="employeeCancellation" class="employeeWriteUp">Cancellation Requests:
<img class="iconAlert" src="Photos/1.png" alt="Stylist Image"/>
</div>
</div>
</a>
</li>
</ul>
</div><!-- /container -->
<br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="grid.js"></script>
<script>
$(function() {
Grid.init();
});
</script>
</html>