-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewapplication.ejs
69 lines (63 loc) · 1.76 KB
/
viewapplication.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
65
66
67
68
69
<!-- <html>
<head></head>
<body>
<h1>Submitted applications :</h1>
<% applications.forEach(function(app){ %>
<a href="/application/view/<%=app._id%>"><%=app.subject %></a>
<br>
<% }); %>
</body>
</html> -->
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="/css/Applicationstatus.css">
</head>
<body>
<div class="split left">
<div class="centered">
<!-- <img src="img_avatar2.png" alt="Avatar woman"> -->
<h2><span>Application</span></h2>
<!-- <p>Some text.</p> -->
<div class="list-type1">
<ol>
<% applications.forEach(function(app){ %>
<li><a href="/application/view/<%=app._id%>"><%=app.subject %></a></li>
<!-- <br> -->
<% }); %>
<!-- <li><a href="#">G5 permission</a></li>
<li><a href="#">G5 permission</a></li>
<li><a href="#">Mamta Awasti</a></li>
<li><a href="#">Kesahav</a></li>
<li><a href="#">A.N GILL</a></li>
<li><a href="#">Mamta Awasti</a></li>
<li><a href="#">Kesahav</a></li> -->
</ol>
</div>
</div>
</div>
<div class="split right">
<div class="centered">
<!-- <img src="img_avatar.png" alt="Avatar man"> -->
<h2><span2>Application Status</span2></h2>
<!-- <p>Some text here too.</p> -->
<div class="list-type1">
<ol>
<% applications.forEach(function(app){ %>
<li><a href="/application/view/<%=app._id%>"><%=app.isVerif1%></a></li>
<!-- <br> -->
<% }); %>
<!-- <li><a href="#">Approved/Cancelled</a></li>
<li><a href="#">G5 permission</a></li>
<li><a href="#">Mamta Awasti</a></li>
<li><a href="#">Kesahav</a></li>
<li><a href="#">A.N GILL</a></li>
<li><a href="#">Mamta Awasti</a></li>
<li><a href="#">Kesahav</a></li> -->
</ol>
</div>
</div>
</div>
</body>
</html>