-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (68 loc) · 2.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MPC Extension</title>
<link rel="stylesheet" href="./src/assets/css/base.css" />
<link rel="stylesheet" href="./src/assets/css/style.css" />
</head>
<body>
<div class="dialog">
<div class="dialog-body">
<form class="form-subject">
<h4 class="title">Học kỳ 3 - Năm học 2023 - 2024</h4>
<fieldset>
<legend>Thêm môn học:</legend>
<div class="form-group">
<input class="name" type="text" placeholder="Tên môn" />
</div>
<div class="form-group">
<input class="code" type="text" placeholder="Mã môn" />
<input class="credit" type="number" placeholder="Tín chỉ" />
<input class="point" type="number" placeholder="Điểm (3.5)" min="0" max="4" step="0.5" />
</div>
<div class="form-footer">
<button type="button" class="btn btn-cancel btn-close-dialog">Hủy</button>
<button type="submit" class="btn btn-active btn-add-subject">Thực hiện</button>
</div>
</fieldset>
</form>
</div>
</div>
<div class="app">
<div class="error-message hide"></div>
<div class="no-data">
<div>Không có dữ liệu được lưu!</div>
<div>
Vui lòng chuyển sang <b class="nav-link">https://tienichsv.ou.edu.vn/#/diem</b> để lưu thông tin mới nhất!
</div>
</div>
<button class="btn btn-active btn-import-data hide">Nhập dữ liệu mới</button>
<b>
<div class="user-info hide">Phan Lê Hồ - demo</div>
</b>
<div class="root hide" id="root">
<div id="updatedAt"></div>
<div class="filter-group">
<input type="text" placeholder="Tìm theo tên môn học..." id="search-subject" />
<div class="checkbox-group" title="Chỉ hiển thị các môn học tính GPA">
<input type="checkbox" id="only-calc-gpa" />
<label for="only-calc-gpa">Chỉ GPA</label>
</div>
</div>
<div class="result">
<div class="total-credit">Tín chỉ: <span>0</span></div>
<div class="avg-point">Điểm trung bình: <span>0</span></div>
</div>
<table class="data" border="1"></table>
</div>
</div>
<footer class="footer">
© 2025 Copyright:
<a class="footer-fb" target="_blank" href="https://www.facebook.com/CLBLapTrinhTrenThietBiDiDong">MPC</a>
<a class="footer-github" target="_blank" href="https://github.com/leho-dev/mpc-extension">Github</a>
</footer>
<script type="module" src="./src/tienichsv.ts"></script>
</body>
</html>