-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (117 loc) · 4.91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self' https://cdnjs.cloudflare.com;" />
<title>MPC Extension</title>
<link rel="stylesheet" href="./src/assets/css/base.css" />
<link rel="stylesheet" href="./src/assets/css/app.css" />
<link rel="stylesheet" href="./src/assets/css/info.css" />
<link rel="stylesheet" href="./src/assets/css/statistics.css" />
</head>
<body>
<nav id="nav" class="nav active">
<div data-id="app" class="nav-item">Tính điểm</div>
<div data-id="info" class="nav-item">Thông tin</div>
<div data-id="statistics" class="nav-item">Thống kê</div>
</nav>
<div id="error">
<div class="error-message"></div>
</div>
<main id="container" class="container">
<section id="app" class="app">
<div class="no-data">
<div>Không có dữ liệu được lưu!</div>
<div>
Vui lòng chuyển sang
<b data-url="https://tienichsv.ou.edu.vn/#/diem" class="redirect-link"
>https://tienichsv.ou.edu.vn/#/diem</b
>
để lưu thông tin mới nhất!
</div>
</div>
<div class="main-data">
<div class="action-group">
<button class="btn btn-active btn-import-data">Nhập dữ liệu mới</button>
<button class="btn btn-export-excel">Export Excel</button>
</div>
<div class="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>
</section>
<section id="info" class="info">
<div class="no-data">
<div>Không có dữ liệu được lưu!</div>
<div>
Vui lòng chuyển sang
<b data-url="https://tienichsv.ou.edu.vn/#/userinfo" class="redirect-link"
>https://tienichsv.ou.edu.vn/#/userinfo</b
>
để lưu thông tin mới nhất!
</div>
</div>
<div class="main-data">
<div class="action-group">
<button class="btn btn-active btn-import-data">Nhập dữ liệu mới</button>
<button class="btn btn-export-excel">Export Excel</button>
</div>
<div class="updatedAt"></div>
<div class="result">
<h5 class="title">Thông tin người dùng</h5>
<table border="1" class="user"></table>
<h5 class="title">Thông tin khoá học</h5>
<table border="1" class="course"></table>
</div>
</div>
</section>
<section id="statistics" class="statistics">
<div style="text-align: center">(Đang phát triển)</div>
</section>
</main>
<footer id="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/holedev/mpc-extension">Github</a>
</footer>
<div id="dialog" class="dialog">
<div class="dialog-body">
<div data-id="app">
<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 data-id="info"></div>
<div data-id="statistics"></div>
</div>
</div>
<script src="./src/assets/xlsx/xlsx.full.min.js"></script>
<script type="module" src="./src/index.ts"></script>
</body>
</html>