AudioHTML/security.html

104 lines
4.4 KiB
HTML
Raw Normal View History

2023-10-29 16:52:53 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
2023-11-08 00:29:39 +08:00
<script src="js/config.js"></script>
<script src="js/jquery-3.7.1.js"></script>
2023-10-29 16:52:53 +08:00
</head>
<body class="h-100 text-center text-bg-dark content-warp">
<div class="d-flex w-100 h-100 mx-auto flex-column">
<header class="mb-auto pb-5">
<div class="dotblock d-flex justify-content-between px-5 py-4">
<div class="fs-3">GEAZAN</div>
<div></div>
</div>
<div class="d-flex justify-content-center fw-bold border-black nav">
2023-11-03 00:47:21 +08:00
<div class="">
<a href="home.html">HOME</a>
</div>
<div class=""><a href="filter.html">FILTER</a></div>
<div class=""><a href="fs.html">FS</div>
<div class=""><a href="eq.html">EQ</a></div>
<div class=""><a href="ducking.html">DUCKING</a></div>
<div class=""><a href="network.html">NETWORK</a></div>
2023-10-29 16:52:53 +08:00
<div class="active">
2023-11-03 00:47:21 +08:00
<a href="security.html">SECURITY</a>
2023-10-29 16:52:53 +08:00
</div>
2023-11-03 00:47:21 +08:00
<div class=""><a href="control.html">CONTROL</a></div>
<div class="last "><a href="system.html">SYSTEM</a></div>
2023-10-29 16:52:53 +08:00
</div>
</header>
<main class="px-3 d-flex justify-content-center">
<div class="form">
<div class="border border-black m-6 password-form">
<div class=" m-5 mx-auto form" style="width: 500px;">
<div class="mb-3 row">
2023-11-08 00:29:39 +08:00
<label for="oldname" class="col-sm-5 col-form-label">Old Username</label>
2023-10-29 16:52:53 +08:00
<div class="col-sm-7">
2023-11-08 00:29:39 +08:00
<input class="form-control" id="oldname" placeholder="" />
2023-10-29 16:52:53 +08:00
</div>
</div>
<div class="mb-3 row">
2023-11-08 00:29:39 +08:00
<label for="newname" class="col-sm-5 col-form-label">New Username</label>
2023-10-29 16:52:53 +08:00
<div class="col-sm-7">
2023-11-08 00:29:39 +08:00
<input class="form-control" id="newname" placeholder="" />
2023-10-29 16:52:53 +08:00
</div>
</div>
<div class="mb-3 row">
2023-11-08 00:29:39 +08:00
<label for="oldpassword" class="col-sm-5 col-form-label">Old Password</label>
2023-10-29 16:52:53 +08:00
<div class="col-sm-7">
2023-11-08 00:29:39 +08:00
<input type="password" class="form-control" id="oldpassword">
2023-10-29 16:52:53 +08:00
</div>
</div>
<div class="mb-3 row">
2023-11-08 00:29:39 +08:00
<label for="newpassword" class="col-sm-5 col-form-label">New Password</label>
2023-10-29 16:52:53 +08:00
<div class="col-sm-7">
2023-11-08 00:29:39 +08:00
<input type="password" class="form-control" id="newpassword">
2023-10-29 16:52:53 +08:00
</div>
</div>
<div class="mb-3 row">
2023-11-08 00:29:39 +08:00
<label for="confirmpassword" class="col-sm-5 col-form-label">Confirm New Password</label>
2023-10-29 16:52:53 +08:00
<div class="col-sm-7">
2023-11-08 00:29:39 +08:00
<input type="password" class="form-control" id="confirmpassword">
2023-10-29 16:52:53 +08:00
</div>
</div>
</div>
</div>
<div class="mt-5 pb-5">
2023-11-08 00:29:39 +08:00
<button type="button" id="submit" class="btn btn-dark border border-black px-5">Confirm</button>
2023-10-29 16:52:53 +08:00
</div>
</div>
</main>
<footer class="mt-auto text-white-50">
<div class="dotblock d-flex justify-content-between px-5 py-4">
<div class="">Geazan</div>
<div>www.geazan.com</div>
</div>
</footer>
</div>
2023-11-08 00:29:39 +08:00
<script>
document.addEventListener("DOMContentLoaded", function () {
//初始化配置
})
$(document).ready(function () {
$("#submit").on("click", function () {
let oldname = $("#oldname").val()
let newname = $("#newname").val()
let oldpassword = $("#oldpassword").val()
let newpassword = $("#newpassword").val()
let confirmpassword = $("#confirmpassword").val()
})
})
</script>
2023-10-29 16:52:53 +08:00
</body>
</html>