mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-15 03:21:38 -08:00
70 lines
No EOL
3.5 KiB
HTML
Vendored
70 lines
No EOL
3.5 KiB
HTML
Vendored
<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">
|
|
<meta name="robots" content="noindex" />
|
|
<title>Attendance 點名系統 2.0</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">
|
|
<link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico" />
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H6D61RSBHR"></script>
|
|
<script src="/static/gtag.js"></script>
|
|
<script src="https://kit.fontawesome.com/52a3d6c810.js" crossorigin="anonymous"></script>
|
|
<!-- <script src="https://www.google.com/recaptcha/api.js"></script> -->
|
|
</head>
|
|
|
|
<body>
|
|
<div class="showTime"><span id="showTime"></span></div>
|
|
<div class="text-center container">
|
|
<div class="loginPanel">
|
|
<h1 class="margin-top margin-bottom">
|
|
<div class="img"><img src="/static/favicon.ico" alt="" style="height: 100%"> Forgot Password 忘記密碼</div> </h1>
|
|
<form action="/forgotPassword" id="forgotPassword_sel" method="post">
|
|
<div>
|
|
<input class="form-check-input" type="radio" name="user_type" id="user_type_teacher" value="teacher" checked>
|
|
<label class="form-check-label" for="user_type_teacher" style="margin-right: 20px;">
|
|
Teacher 教師 / Admin 管理員
|
|
</label>
|
|
<input class="form-check-input" type="radio" name="user_type" id="user_type_student" value="student">
|
|
<label class="form-check-label" for="user_type_student">
|
|
Student 學生
|
|
</label>
|
|
</div>
|
|
<br>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-user"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="username" id="username" placeholder="Username">
|
|
</div>
|
|
<button class="btn btn-warning btn-block g-recaptcha" onclick="loadingAnimation()">Confirm
|
|
確認</button>
|
|
<a href="/"><button type="button" class="btn btn-primary btn-block"
|
|
onclick="loadingAnimation()">Go back 回上一頁</button></a>
|
|
</form>
|
|
<p>This will send an email to the email address to verify your identity.<br>
|
|
這會傳送一個郵件到指定的信箱,以驗證您的身份
|
|
</p>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div class="alert alert-danger" role="alert">
|
|
{% for message in messages %}
|
|
{% autoescape false %}{{message}}{% endautoescape %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% include 'footer.html' %}
|
|
</div>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
<script src="/static/pagejs/forgotPassword.js"></script>
|
|
<script src="/static/time.js"></script>
|
|
</body>
|
|
|
|
</html> |