-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.ejs
41 lines (40 loc) · 917 Bytes
/
view.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
<html>
<head>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<h1>Application</h1>
<div class = "disp">
To :
<%= application.to %>
<br>
<br>
From :
<%= application.from %>
<br>
<br>
Subject :
<%= application.subject %>
<br>
<br>
Purpose :
<%= application.purpose %>
<br>
<br>
Timing :
<%= application.timing %>
<br>
<br>
Description :
<%= application.description %>
<br>
<br>
Applicant :
<%= application.applicant %>
<br>
<br>
Verified :
<%= application.isVerif1 %>
</div>
</body>
</html>