-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployerHome.ejs
64 lines (53 loc) · 2.53 KB
/
employerHome.ejs
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
<!DOCTYPE html>
<html>
<head>
<title>Student Setup</title>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css'>
</head>
<body>
<div id="bg" class="home-page">
<a href="/">
<img src="images/mini connec logo white.svg" id="mini-logo">
</a>
<div class="container">
<div class="vert-text col-sm-offset-3" id="queue-line">
<i class="fa fa-user" aria-hidden="true" id="company-user-icon"></i>
<i class="fa fa-user" aria-hidden="true" id="student-user-icon"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
<i class="fa fa-user" aria-hidden="true"></i>
</div>
<div class="col-sm-10" id="right-side-queue">
<h1 id="company-name"><%= companyName %></h1>
<h1 id="next-student"><%= nextStudent %></h1>
<div id="next-std">
<p id="q-length"><%= numLeft %></p>
<button type="button" class="btn" id="next-btn">SEND NEXT STUDENT</button>
</div>
</div>
</div>
</div>
<script>
$("#next-btn").click(function() {
$.ajax({
url: '/nextStudent',
type: 'PUT',
complete: function(data){
window.location.replace('/employerHome');
}
});
});
</script>
</body>
</html>