-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcp.html
60 lines (60 loc) · 2.49 KB
/
pcp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assessment Committee Proceedings</title>
<link rel="stylesheet" href="pcp.css">
</head>
<body>
<form>
<h1>Assessment Committee Proceedings</h1>
<table>
<tr>
<td><strong>Cash award maybe given</strong></td>
<td>
<input type="radio" name="radio" id="opt1"/>
<label for="opt1" class="label1">
<span>YES</span>
</label>
<input type="radio" name="radio" id="opt2"/>
<label for="opt2" class="label2">
<span>NO</span>
</label>
</td>
</tr>
<tr>
<td><strong>Amount of cash award recommended</strong></td>
<td id="amountCell">
<input type="number" id="amount" placeholder="Enter amount (INR)" required>
<button onclick="submitAmount()">Submit</button>
<p id="approvalMessage"></p>
<button id="approveButton" onclick="approveAmount()" style="display:none;">Approve</button>
</td>
</tr>
<tr>
<td><strong>Enter the Remarks/Comments(if any)</strong></td>
<td id="remarksCell">
<textarea id="comments" placeholder="Enter remarks/comments (if any)" rows="4" cols="50"></textarea>
</td>
</tr>
<tr>
<td id="uploadCell">
<label><strong>Supporting document for Scopus indexing of article (if exists):</strong></label>
<input type="file" id="scopusDoc">
<br><br>
<label><strong>Supporting document for Impact Factor of article (if exists):</strong></label>
<input type="file" id="impactFactorDoc1">
<br><br>
<label><strong>Supporting document for Impact Factor of article (if exists):</strong></label>
<input type="file" id="impactFactorDoc2">
<br><br>
<label><strong>Any other relevant document (if any):</strong></label>
<input type="file" id="otherDoc">
</td>
</tr>
</table>
</form>
<script src="script.js"></script>
</body>
</html>