-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.67 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="logo.png">
<title>SIMAK UNSIL Lite</title>
</head>
<body>
<div class="header-container">
<a href="https://unsil.ac.id/" target="_blank">
<img src="logo.png" alt="Logo Unsil" style="width:100px;height:100px;">
</a>
<h1>SIMAK UNSIL Lite</h1>
</div>
<div class="container">
<form id="fileForm">
<label for="tahunAngkatan">Tahun Angkatan:</label>
<input type="text" id="tahunAngkatan" name="tahunAngkatan" required>
<label for="npm">NPM:</label>
<input type="text" id="npm" name="npm" required>
<label for="downloadType">Pilihan File:</label>
<select id="downloadType" name="downloadType">
<option value="image">Foto SIMAK</option>
<option value="pdf">Transkrip Nilai</option>
</select>
<button type="button" onclick="displayFile()">Tampilkan</button>
</form>
<div id="fileContainer"></div>
</div>
<div class="footer-container">
FL -
<a href="https://github.com/FrostLynn/simaklite" target="_blank">GITHUB</a>
2024
<div class="elfsight-app-22b2fd66-08f4-4bf2-8ce8-fc224a64dbdc" data-elfsight-app-lazy></div>
</div>
<script src="script.js"></script>
<script src="https://static.elfsight.com/platform/platform.js" async></script>
</body>
</html>