-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
469 lines (458 loc) · 25.2 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Cube Rota | Cost effective way of managing your rota</title>
<link rel="shortcut icon" href="assets/cube_icon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.2.1/litera/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great" rel="stylesheet">
</head>
<body>
<!--************************************************ NAVBAR *********************************************************-->
<nav class="navbar navbar-expand-md navbar-dark py-1">
<!--Logo-->
<a class="navbar-brand py-0" href="#">
<img src="assets/cube.png" alt="CUBE Logo">
<span class="m-auto">CUBE rota</span>
</a>
<!--collapsible navbar-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardropindustries" data-toggle="dropdown">
Industries
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="industries.html#">Retail</a>
<a class="dropdown-item" href="industries.html#Hotel">Hotel/Hospitality</a>
<a class="dropdown-item" href="industries.html#Agency">Agency</a>
<a class="dropdown-item" href="industries.html#Catering">Catering</a>
<a class="dropdown-item disabled" href="industries.html#Cafe">Restaurant/Café/Bar</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardropfeatures" data-toggle="dropdown">
Features
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="features.html#Scheduling">Scheduling</a>
<a class="dropdown-item" href="features.html#Publish">Publish rota</a>
<a class="dropdown-item" href="features.html#">Time & Attendance</a>
<a class="dropdown-item" href="features.html#Clocking">Clock-in/out</a>
<a class="dropdown-item" href="features.html#Holiday">Holiday requests/approvals</a>
<a class="dropdown-item" href="features.html#Reminder">Alerts/Reminders</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="pricing.html">Pricing</a>
</li>
</ul>
<!-- **** Buttons on the right **** -->
<ul class="navbar-nav ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardroplanguages" data-toggle="dropdown">
<i class="fas fa-language"></i>
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#lang_eng">English</a>
<a class="dropdown-item disabled" href="#lang_ru">Russian</a>
<a class="dropdown-item disabled" href="#lang_fr">French</a>
<a class="dropdown-item disabled" href="#lang_it">Italian</a>
<a class="dropdown-item disabled" href="#lang_sr">Serbian</a>
<a class="dropdown-item disabled" href="#lang_hu">Hungarian</a>
<a class="dropdown-item disabled" href="#lang_ro">Romanian</a>
<a class="dropdown-item disabled" href="#lang_pl">Polish</a>
</div>
<li class="nav-item">
<a class="nav-link" href="signup.html">
<i class="fas fa-user"></i>
<span>Sign up</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">
<i class="fas fa-sign-in-alt"></i>
<span>Sign in</span>
</a>
</li>
</ul>
</div>
</nav>
<!--********************************************** /. NAVBAR *********************************************************-->
<!--********************************************** JUMBOTRON *********************************************************-->
<div class="container-fluid callout-container">
<div class="row">
<div class="col-12">
<section class="callout jumbotron text-center py-0 pt-md-5">
<h1>The cost effective way of planning your rota </h1>
<h1 class="d-none d-md-inline"> and scheduling your staff</h1>
<hr class="my-2 my-md-4 block-divider">
<p class="lead py-0 py-md-5">
Sign up for 30 days <strong>FREE</strong> trial
<span class="d-none d-md-inline"> or schedule a demo session with us</span>
<strong>now!</strong>
</p>
<div class="container button-container py-0 py-md-5">
<div class="row">
<div class="col-md-2"></div> <!--this is a placeholder for larger devices-->
<div class="col-12 col-md-4 mybutton">
<a class="btn btn-warning btn-lg width150" href="signup.html" role="button">Sign up</a>
</div>
<div class="col-12 col-md-4 mybutton">
<a class="btn btn-warning btn-lg width150" href="bookademo.html" role="button">Book a Demo</a>
</div>
<div class="col-md-2"></div> <!--this is a placeholder for larger devices-->
</div>
</div>
</section>
</div>
</div>
</div>
<!--******************************************** /. JUMBOTRON *********************************************************-->
<!--********************************************** QUOTES *********************************************************-->
<div class="container quotes-container">
<section class="quotes">
<div class="row">
<div class="col-12">
<div class="section-title mt-5 mb-3 text-center">
<h2>QUOTES:</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6">
<div class="media quote-card">
<div class="d-none d-lg-block mr-3 quote-card-picture">
<img class="quote-card-img" src="assets/Profile_picture1.jpg" alt="profile picture"></img>
</div>
<blockquote class="blockquote">
<p class="mb-1 mx-1">We have reduced our payroll processing time by 43% since using CUBE Rota!</p>
<footer class="blockquote-footer">Mrs. Heather Johnes <cite title="Source Title">Head of Finance</cite></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-md-6">
<div class="media quote-card">
<div class="d-none d-lg-block mr-3 quote-card-picture">
<img class="quote-card-img" src="assets/Profile_picture2.jpg" alt="profile picture"></img>
</div>
<blockquote class="blockquote">
<p class="mb-1 mx-1">The biggest value of CUBE Rota for me is measuring my labour efficiency, analyse the KPIs and continuously improve.</p>
<footer class="blockquote-footer">John K. from <cite title="Source Title">Oak Forest Hotel Spa and Resorts</cite></footer>
</blockquote>
</div>
</div>
</div>
</section>
</div>
<!--********************************************* /. QUOTES *********************************************************-->
<hr class="block-divider">
<!--********************************************* INDUSTRIES *********************************************************-->
<div class="container industries-container">
<section class="industries">
<div class="row">
<div class="col-12">
<div class="section-title mt-4 mb-3 text-center">
<h2>INDUSTRIES:</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-4 pb-3">
<div class="industry-card">
<h3 class="industry-card-title">
<i class="fas fa-shopping-basket"></i>
<span class="industry-name">Retail</span>
</h3>
<p class="industry-card-text mb-0">
The efficiency of your labour force depends on how accurately you are able to <strong>forecast</strong> number of transactions for any given period of time.
Beside transactions, you need just enough staff for managing regular admin and other tasks.
</p>
<a class="crosslink" href="industries.html#">...learn more details</a>
</div>
</div>
<div class="d-none d-md-block col-md-6 col-lg-4 pb-3">
<div class="industry-card">
<h3 class="industry-card-title">
<i class="fas fa-bed"></i>
<span class="industry-name">Hotel</span>
</h3>
<p class="industry-card-text mb-0">
All hourly paid staff in one place: own employees and agency staff planned and administered together.
</p>
<a class="crosslink" href="industries.html#Hotel">...learn more details</a>
</div>
</div>
<div class="d-none d-md-block col-12 col-md-6 col-lg-4 pb-3">
<div class="industry-card">
<h3 class="industry-card-title">
<i class="fas fa-shipping-fast"></i>
<span class="industry-name">Catering</span>
</h3>
<p class="industry-card-text mb-0">
The system is capable of communicating all the information to your staff regarding their shifts, including calendar invites, map snapshots or Google map links.
</p>
<a class="crosslink" href="industries.html#Catering">...learn more details</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pb-3">
<div class="industry-card">
<h3 class="industry-card-title">
<i class="fas fa-address-card"></i>
<span class="industry-name">Agency</span>
</h3>
<p class="industry-card-text mb-0">
Communicate and do all the paperwork with your client in one place. And that's just the basics...
</p>
<a class="crosslink" href="industries.html#Agency">...learn more details</a>
</div>
</div>
<div class="d-none col-12 col-md-6 col-lg-4 pb-3"> <!-- Currently unavailable -->
<div class="industry-card">
<h3 class="industry-card-title">
<i class="fas fa-cocktail"></i>
<span class="industry-name">Café/Bar</span>
</h3>
<p class="industry-card-text mb-0">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure corporis tenetur harum. Similique error impedit
cum vero alias aspernatur maiores temporibus totam! Alias autem cum sequi, officiis mollitia blanditiis sapiente.
</p>
<a class="crosslink" href="industries.html#Cafe">...learn more details</a>
</div>
</div>
</div>
</section>
</div>
<!--******************************************* /. INDUSTRIES *********************************************************-->
<hr class="block-divider">
<!--********************************************* FEATURES *********************************************************-->
<div class="container features-container">
<section class="features">
<div class="row">
<div class="col-12">
<div class="section-title mt-5 mb-3 text-center">
<h2>FEATURES:</h2>
</div>
</div>
</div>
<div class="row">
<div class="d-none d-md-block col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-calendar-check"></i>
<span class="feature-name">Time&Attendance</span>
</h3>
<p class="feature-card-text mb-0">
Proper administration of time and attendance is the necessary base for your automated payroll.
</p>
<a class="crosslink" href="features.html#">...learn more details</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-calendar-alt"></i>
<span class="feature-name">Scheduling</span>
</h3>
<p class="feature-card-text mb-0">
Scheduling is the key purpose you are here. <br>
All the other features of the system support your business and can <strong>save you money and time</strong>,
but in the first place you want to create a schedule for your staff.
</p>
<a class="crosslink" href="features.html#Scheduling">...learn more details</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-stopwatch"></i>
<span class="feature-name">Clocking-in/out</span>
</h3>
<p class="feature-card-text mb-0">
Responsible managers can use the system to record <strong>start and finishing times</strong> for each employee.
</p>
<p class="feature-card-text mb-0">
GPS and biometric clock-in and clock-out also available!
</p>
<a class="crosslink" href="features.html#Clocking">...learn more details</a>
</div>
</div>
<div class="d-none d-md-block col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-umbrella-beach"></i>
<span class="feature-name">Holiday requests</span>
</h3>
<p class="feature-card-text mb-0">
Staff can request holiday through the system, managers can approve or reject and notify the requestor.
</p>
<a class="crosslink" href="features.html#Holiday">...learn more details</a>
</div>
</div>
<div class="d-none d-md-block col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-upload"></i>
<span class="feature-name">Publishing rota</span>
</h3>
<p class="feature-card-text mb-0">
Set up your publishing format and choose your preferred communication!
</p>
<a class="crosslink" href="features.html#Publish">...learn more details</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pb-3">
<div class="feature-card">
<h3 class="feature-card-title">
<i class="fas fa-bell"></i>
<span class="feature-name">Alerts/Reminders</span>
</h3>
<p class="feature-card-text mb-0">
Multiple ways you can remind your staff, or they can set alerts for themselves.
</p>
<a class="crosslink" href="features.html#Reminder">...learn more details</a>
</div>
</div>
</div>
</section>
</div>
<!--********************************************* /. FEATURES *********************************************************-->
<hr class="block-divider">
<!--******************************************* HAPPY CUSTOMERS *********************************************************-->
<div class="container customers-container">
<section class="customers">
<div class="row">
<div class="col-12">
<div class="section-title mt-3 mb-4 text-center">
<h2>Our solutions are trusted by:</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-6 col-md-4 mb-3">
<div class="feature-card">
<div class="imagewrapper">
<img src="assets/CubeSolutions_logo_small.png" alt="Cube Solution Logo">
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-3">
<div class="feature-card">
<div class="imagewrapper">
<img src="assets/ball-2157465_640.png" alt="Logo 1">
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-3">
<div class="feature-card">
<div class="imagewrapper">
<img src="assets/logo-1914020_640.png" alt="Logo 2">
</div>
</div>
</div>
</div>
</section>
</div>
<!--******************************************* /. HAPPY CUSTOMERS *********************************************************-->
<!--******************************************* VIDEO AUDIO ****************************************************-->
<hr class="block-divider d-none d-md-flex">
<div class="container media-container d-none d-md-block">
<section class="mymedia">
<div class="row">
<div class="col-12">
<div class="section-title center-text">
<h2>User opinions:</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 my-2">
<iframe width="560" height="315" src="https://www.youtube.com/embed/z3EJ22tppAo" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
<p>Your browser does not support iframes.</p>
</iframe>
<p class="mymedia-subtitle">Sofia is responsible for scheduling staff at her agency.</p>
</div>
</div>
<hr class="block-divider2">
<div class="row">
<div class="col-md-12 mb-4">
<audio controls>
<source src="assets/cube_rota_ad_1.mp3" type="audio/mp3">
<p>Your browser does not support the audio element.</p>
</audio>
<p class="mymedia-subtitle">Mr. Dumbledore is responsible for an entire organisation.</p>
</div>
</div>
</section>
</div>
<!--******************************************* /. VIDEO AUDIO *********************************************************-->
<!--********************************************** FOOTER *********************************************************-->
<footer class="conainer-fluid">
<div class="social-footer">
<a id="facebook" target="_blank" href="#" data-toggle="tooltip" title="Visit us on Facebook">
<i class="fab fa-facebook"></i>
</a>
<a id="instagram" target="_blank" href="#" data-toggle="tooltip" title="Visit us on Instagram">
<i class="fab fa-instagram"></i>
</a>
<a id="linkedin" target="_blank" href="#" data-toggle="tooltip" title="Visit us on LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a id="twitter" target="_blank" href="#" data-toggle="tooltip" title="Visit us on Twitter">
<i class="fab fa-twitter"></i>
</a>
<a id="youtube" target="_blank" href="#" data-toggle="tooltip" title="Visit us on YouTube">
<i class="fab fa-youtube"></i>
</a>
</div>
<div class="container text-footer">
<div class="row">
<div class="footer-items col-sm-6 col-md-3">
<h5>Help / Support</h5>
<ul>
<li><a href="#">Search FAQ</a></li>
<li><a href="#">User Manual</a></li>
</ul>
</div>
<div class="footer-items col-sm-6 col-md-3">
<h5>Contact</h5>
<ul>
<li>Phone:<br>+44 020 1234 5678</li>
<li>E-mail:<br>[email protected]</li>
</ul>
</div>
<div class="footer-items col-sm-6 col-md-3">
<h5>Legal</h5>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms&Conditions</a></li>
<li><a href="#">Using Your Data</a></li>
<li><a href="#">Legal Info</a></li>
</ul>
</div>
<div class="footer-items col-sm-6 col-md-3">
<h5>About</h5>
<ul>
<li><a href="#">Company Info</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!--********************************************** /. FOOTER *********************************************************-->
</body>
</html>