|
|
|
@ -1,131 +1,180 @@ |
|
|
|
<!doctype html> |
|
|
|
<html lang="en"> |
|
|
|
<head> |
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
|
|
|
|
|
|
<!-- Bootstrap CSS --> |
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
|
|
|
<link rel="stylesheet" href="assets/styles/style.css"> |
|
|
|
|
|
|
|
<title>Reports</title> |
|
|
|
|
|
|
|
</head> |
|
|
|
|
|
|
|
<body class="app"> |
|
|
|
<!-- @TOC --> |
|
|
|
<!-- =================================================== --> |
|
|
|
<!-- |
|
|
|
+ @Page Loader |
|
|
|
+ @App Content |
|
|
|
- #Left Sidebar |
|
|
|
> $Sidebar Header |
|
|
|
> $Sidebar Menu |
|
|
|
|
|
|
|
- #Main |
|
|
|
> $Topbar |
|
|
|
> $App Screen Content |
|
|
|
--> |
|
|
|
|
|
|
|
<!-- @Page Loader --> |
|
|
|
<!-- =================================================== --> |
|
|
|
<div id='loader'> |
|
|
|
<div class="spinner"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<script> |
|
|
|
window.addEventListener('load', () => { |
|
|
|
const loader = document.getElementById('loader'); |
|
|
|
setTimeout(() => { |
|
|
|
loader.classList.add('fadeOut'); |
|
|
|
}, 300); |
|
|
|
}); |
|
|
|
</script> |
|
|
|
|
|
|
|
<!-- @App Content --> |
|
|
|
<!-- =================================================== --> |
|
|
|
<div> |
|
|
|
|
|
|
|
${require('html-loader!./_sidebar.html')} |
|
|
|
|
|
|
|
<!-- #Main ============================ --> |
|
|
|
<div class="page-container"> |
|
|
|
|
|
|
|
${require('html-loader!./_topbar.html')} |
|
|
|
|
|
|
|
<!-- ### $App Screen Content ### --> |
|
|
|
<main class='main-content bgc-grey-300' style="padding-left: 80px; padding-right: 80px;"> |
|
|
|
<div class="col-8 ml-1 mb-3"> |
|
|
|
<h1>Reports</h1> |
|
|
|
</div> |
|
|
|
<!-- ### Table ### --> |
|
|
|
<div class="container"> |
|
|
|
<table class="table table-hover"> |
|
|
|
<thead class="thead-purple-border"> |
|
|
|
<tr> |
|
|
|
<th scope="col">#</th> |
|
|
|
<th scope="col">First Name</th> |
|
|
|
<th scope="col">Last Name</th> |
|
|
|
<th scope="col">Username</th> |
|
|
|
<th scope="col">State</th> |
|
|
|
<th scope="col">Language</th> |
|
|
|
<th scope="col">Fields</th> |
|
|
|
<th scope="col">Member Since</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<tr> |
|
|
|
<th scope="row">1</th> |
|
|
|
<td>Tony</td> |
|
|
|
<td>Stark</td> |
|
|
|
<td>tonystark</td> |
|
|
|
<td>VIC</td> |
|
|
|
<td>English</td> |
|
|
|
<td>Hospitality</td> |
|
|
|
<td>Feb 2019</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">2</th> |
|
|
|
<td>David</td> |
|
|
|
<td>James</td> |
|
|
|
<td>davidjames</td> |
|
|
|
<td>VIC</td> |
|
|
|
<td>English, Italian</td> |
|
|
|
<td>Design</td> |
|
|
|
<td>Feb 2019</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">3</th> |
|
|
|
<td>Miro</td> |
|
|
|
<td>Kirov</td> |
|
|
|
<td>mirokirov</td> |
|
|
|
<td>VIC</td> |
|
|
|
<td>English, Japanese</td> |
|
|
|
<td>IT</td> |
|
|
|
<td>Feb 2019</td> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</main> |
|
|
|
</div><!-- page-container --> |
|
|
|
</div> <!-- App Content --> |
|
|
|
<!DOCTYPE html> |
|
|
|
<html> |
|
|
|
|
|
|
|
<head> |
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
|
|
<title>Reports</title> |
|
|
|
|
|
|
|
<style> |
|
|
|
#loader { |
|
|
|
transition: all 0.3s ease-in-out; |
|
|
|
opacity: 1; |
|
|
|
visibility: visible; |
|
|
|
position: fixed; |
|
|
|
height: 100vh; |
|
|
|
width: 100%; |
|
|
|
background: #fff; |
|
|
|
z-index: 90000; |
|
|
|
} |
|
|
|
|
|
|
|
#loader.fadeOut { |
|
|
|
opacity: 0; |
|
|
|
visibility: hidden; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.spinner { |
|
|
|
width: 40px; |
|
|
|
height: 40px; |
|
|
|
position: absolute; |
|
|
|
top: calc(50% - 20px); |
|
|
|
left: calc(50% - 20px); |
|
|
|
background-color: #333; |
|
|
|
border-radius: 100%; |
|
|
|
-webkit-animation: sk-scaleout 1.0s infinite ease-in-out; |
|
|
|
animation: sk-scaleout 1.0s infinite ease-in-out; |
|
|
|
} |
|
|
|
|
|
|
|
@-webkit-keyframes sk-scaleout { |
|
|
|
0% { -webkit-transform: scale(0) } |
|
|
|
100% { |
|
|
|
-webkit-transform: scale(1.0); |
|
|
|
opacity: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
<!-- ### $App Screen Footer ### --> |
|
|
|
<footer class="bdT ta-c p-30 lh-0 fsz-sm c-grey-600"> |
|
|
|
<span>Copyright © 2017 Designed by <a href="https://colorlib.com" target='_blank' title="Colorlib">Colorlib</a>. All rights reserved.</span> |
|
|
|
</footer> |
|
|
|
@keyframes sk-scaleout { |
|
|
|
0% { |
|
|
|
-webkit-transform: scale(0); |
|
|
|
transform: scale(0); |
|
|
|
} 100% { |
|
|
|
-webkit-transform: scale(1.0); |
|
|
|
transform: scale(1.0); |
|
|
|
opacity: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</head> |
|
|
|
|
|
|
|
<body class="app"> |
|
|
|
|
|
|
|
<!-- Optional JavaScript --> |
|
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> |
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> |
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script> |
|
|
|
</body> |
|
|
|
<div id='loader'> |
|
|
|
<div class="spinner"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<script> |
|
|
|
window.addEventListener('load', () => { |
|
|
|
const loader = document.getElementById('loader'); |
|
|
|
setTimeout(() => { |
|
|
|
loader.classList.add('fadeOut'); |
|
|
|
}, 300); |
|
|
|
}); |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<!-- @App Content --> |
|
|
|
<!-- =================================================== --> |
|
|
|
<div> |
|
|
|
|
|
|
|
<!-- #sidebar ============================ --> |
|
|
|
${require('html-loader!./_sidebar.html')} |
|
|
|
|
|
|
|
<!-- #Main ============================ --> |
|
|
|
<div class="page-container"> |
|
|
|
<!-- #topbar ============================ --> |
|
|
|
${require('html-loader!./_topbar.html')} |
|
|
|
|
|
|
|
<!-- ### $App Screen Content ### --> |
|
|
|
<main class='main-content bgc-grey-300'> |
|
|
|
<div id='mainContent row'> |
|
|
|
<div class="row content-title mT-60"> |
|
|
|
<h1 class="col-8 ml-1 mb-3"> |
|
|
|
Reports |
|
|
|
</h1> |
|
|
|
</div> |
|
|
|
<!-- ### Table ### --> |
|
|
|
<table class="table table-hover"> |
|
|
|
<thead class="thead-purple-border"> |
|
|
|
<tr> |
|
|
|
<th scope="col">#</th> |
|
|
|
<th scope="col">Position</th> |
|
|
|
<th scope="col">Company</th> |
|
|
|
<th scope="col">Industry</th> |
|
|
|
<th scope="col">Submitted By (ID)</th> |
|
|
|
<th scope="col">Submission Date</th> |
|
|
|
<th scope="col">Application Status</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<tr> |
|
|
|
<th scope="row">1</th> |
|
|
|
<td style="text-decoration:underline"><a href="ads_1.html">Graphic Design Intern</a></td> |
|
|
|
<td>Sierra Delta Creative</td> |
|
|
|
<td>Design</td> |
|
|
|
<td>davidchan</td> |
|
|
|
<td>07 Jan 2019</td> |
|
|
|
<td> |
|
|
|
<div class="btn btn-outline-success btn-sm" data-toggle="tooltip" data-placement="right" title="Application is still open"> |
|
|
|
ON |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">2</th> |
|
|
|
<td style="text-decoration:underline"><a href="ads_1.html">Barista Intern</a></td> |
|
|
|
<td>Brunetti</td> |
|
|
|
<td>Hospitality</td> |
|
|
|
<td>jenniferbrown</td> |
|
|
|
<td>21 Jan 2019</td> |
|
|
|
<td> |
|
|
|
<div class="btn btn-outline-secondary btn-sm" data-toggle="tooltip" data-placement="right" title="Application has expired"> |
|
|
|
OFF |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">3</th> |
|
|
|
<td style="text-decoration:underline"><a href="ads_1.html">Web Developer Intern</a></td> |
|
|
|
<td>Agile Talent</td> |
|
|
|
<td>IT / Software Engineering</td> |
|
|
|
<td>christhomson</td> |
|
|
|
<td>23 Jan 2019</td> |
|
|
|
<td> |
|
|
|
<div class="btn btn-outline-info btn-sm" data-toggle="tooltip" data-placement="right" title="Application is closed"> |
|
|
|
CLOSED |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">4</th> |
|
|
|
<td style="text-decoration:underline"><a href="ads_1.html">Kitchen Hand Intern</a></td> |
|
|
|
<td>Yarra River Grill</td> |
|
|
|
<td>Hospitality</td> |
|
|
|
<td>johndoe</td> |
|
|
|
<td>25 Jan 2019</td> |
|
|
|
<td> |
|
|
|
<div class="btn btn-outline-danger btn-sm" data-toggle="tooltip" data-placement="right" title="This job listing is removed"> |
|
|
|
CANCELLED |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</main> |
|
|
|
|
|
|
|
|
|
|
|
<!-- ### $App Screen Footer ### --> |
|
|
|
${require('html-loader!./_footer.html')} |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</body> |
|
|
|
|
|
|
|
</html> |