Attendance/templates/chgPassword.html

144 lines
6.9 KiB
HTML
Raw Permalink Normal View History

<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>Attendance 點名系統 (β)</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>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-H6D61RSBHR');
</script>
<style>
.form-group {
margin-bottom: 30px !important;
}
</style>
2021-10-03 07:33:53 -07:00
<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="container">
<h1 class="margin-top margin-bottom">Attendance 點名系統 (β) | Change Password 更改密碼</h1>
<div class="row">
<div class="col"></div>
<div class="col-md-5">
2021-10-03 07:33:53 -07:00
<form action="/chgPassword" id="chgPasswordForm" method="post">
<div class="form-group row">
<label for="password">Old Password 舊密碼:</label><br>
<div class="input-group mb-3">
<input type="password" class="form-control" id="password" name="password" required>
<div class="input-group-append">
<span class="input-group-text toggle-password" onclick="password_show_hide(1);">
<i class="fas fa-eye" id="old_show_eye"></i>
<i class="fas fa-eye-slash d-none" id="old_hide_eye"></i>
</span>
</div>
</div>
</div>
2021-10-03 07:33:53 -07:00
<div class="form-group row">
<label for="password">New Username 新帳號:</label><br>
<div class="input-group mb-3">
<input type="email" class="form-control" id="new_username" name="new_username" required>
</div>
</div>
2021-10-03 07:33:53 -07:00
<div class="form-group row">
<label for="new_password">New Password 新密碼:</label><br>
<div class="input-group mb-3 hasSmall">
<input type="password" class="form-control" id="new_password" name="new_password"
aria-describedby="passwordHelp" required>
<div class="input-group-append">
<span class="input-group-text toggle-password" onclick="password_show_hide(2);">
<i class="fas fa-eye" id="new_show_eye"></i>
<i class="fas fa-eye-slash d-none" id="new_hide_eye"></i>
</span>
</div>
</div>
2021-10-03 07:33:53 -07:00
<small id="passwordHelp" class="form-text text-muted">6 characters
minimum.</small>
</div>
<button class="btn btn-danger btn-block g-recaptcha" onclick="loadingAnimation()">Change Password
更改密碼</button>
<a href="/"><button type="button" class="btn btn-primary btn-block g-recaptcha"
onclick="loadingAnimation()">Go back 回上一頁</button></a>
</form>
<div class="disclaimer" hidden="hidden">
This site is protected by reCAPTCHA and the Google
<a target="_blank" href="https://policies.google.com/privacy">Privacy Policy</a> and
<a target="_blank" href="https://policies.google.com/terms">Terms of Service</a> apply.
</div>
{% 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 %}
</div>
<div class="col"></div>
</div>
</div>
<div id="loading" style="text-align:center; width:100%; display:none;"><img src="/static/loading.gif" alt=""
style="height:100%;" />
</div>
{% include 'footer.html' %}
<script type=" text/javascript" src="/static/jquery.min.js"></script>
<script>
function validateEmail(email) {
const emailRegEx = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
function loadingAnimation() {
$('#loginForm').submit();
if ($("#username").val() == "" || $("#password").val() == "" || $("#new_username").val() == "" || $("#new_password").val() == "" ||
!emailRegEx.test($("#username").val().toLowerCase()) || !emailRegEx.test($("#new_username").val().toLowerCase())) {
return;
}
$('.container').hide();
$('#loading').show();
}
2021-10-03 07:33:53 -07:00
}
function password_show_hide(num) {
var x = '';
var show_eye = '';
var hide_eye = '';
if (num == 1) {
x = document.getElementById("password");
show_eye = document.getElementById("old_show_eye");
hide_eye = document.getElementById("old_hide_eye");
}
else {
x = document.getElementById("new_password");
show_eye = document.getElementById("new_show_eye");
hide_eye = document.getElementById("new_hide_eye");
}
hide_eye.classList.remove("d-none");
if (x.type === "password") {
x.type = "text";
show_eye.style.display = "none";
hide_eye.style.display = "block";
} else {
x.type = "password";
show_eye.style.display = "block";
hide_eye.style.display = "none";
}
}
</script>
<script src="/static/time.js"></script>
</body>
</html>