Attendance/templates/uploadcsv.html

77 lines
3.3 KiB
HTML
Raw Normal View History

2021-09-09 06:29:31 -07:00
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="/static/allpages.css">
<link rel="stylesheet" href="/static/login.css">
</head>
<body>
<!-- csv form center -->
<div class="container">
<div class="row">
<div class="col-md-4 offset-md-4">
<h1 class="text-center">Upload {{title}}</h1>
<!-- upload csv -->
2021-09-14 07:55:11 -07:00
<form action="{{url}}" id="uploadCsvForm" method="post" enctype="multipart/form-data">
2021-09-09 06:29:31 -07:00
<!-- input class code -->
<div class="form-group">
<label for="gradeCode">Grade Code</label>
<input type="text" class="form-control" id="gradeCode" name="gradeCode"
placeholder="Enter Grade Code">
</div>
2021-09-09 06:29:31 -07:00
<div class="form-group">
<label for="classcode">Class Code</label>
<input type="text" class="form-control" id="classcode" name="classcode"
placeholder="Enter Class Code">
</div>
<div class="form-group">
<label for="csv">{{title}}</label>
<input type="file" class="form-control-file" id="csv" name="csv">
</div>
2021-09-14 07:55:11 -07:00
<button onclick="loadingAnimation()" type="button" class="btn btn-primary">Upload</button>
2021-09-09 06:29:31 -07:00
</form>
2021-09-12 02:39:09 -07:00
<!-- show danger zone -->
<div class="alert alert-danger" role="alert">
<h4 class="alert-heading">Warning! 警告!</h4>
<p>If you are not the adminstrator, please do not click "upload" This might make the system
unuseable.</p>
<p>非管理員請勿點選! 可能會讓系統無法使用!</p>
</div>
2021-09-09 06:29:31 -07:00
</div>
</div>
</div>
2021-09-12 02:39:09 -07:00
<div id="loading" style="text-align:center; width:100%; display:none;"><img src="/static/loading.gif" alt=""
style="height:100%;" />
</div>
<footer>
<hr>
<p style="text-align: center;">&copy; 2021 Attendance (β) | Made by <a target="_blank"
href="https://github.com/aaronleetw">Aaron Lee 李翊愷</a> for <a target="_blank"
href="https://www.fhjh.tp.edu.tw">Taipei Fuhsing Private School</a>
2021-09-12 05:31:32 -07:00
<br>
Consultants: Mr. Raymond Tsai 蔡瑋倫老師, Alvin Tsao 曹庭睿
</p>
</footer>
2021-09-12 02:44:27 -07:00
<script type="text/javascript" src="/static/jquery.min.js"></script>
2021-09-12 02:39:09 -07:00
<script>
function loadingAnimation() {
2021-09-14 07:55:11 -07:00
// if csv is empty
if ($("#csv").val() == "") {
alert("Please select a file!");
return;
}
$('#uploadCsvForm').submit();
2021-09-12 02:39:09 -07:00
$('.container').hide();
$('#loading').show();
}
</script>
2021-09-09 06:29:31 -07:00
<!-- end csv form center -->
</body>
</html>