1 Star 0 Fork 0

嗷嗷/网站密码

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
嗷嗷 提交于 2023-07-04 20:38 +08:00 . update index.html.
<!DOCTYPE html>
<html>
<head>
<title>log in</title>
<style>
body {
background-image: url("https://i.hd-r.cn/f129fdec95768ffbea15a03419c52ba3.jpg");
background-size: cover;
}
</style>
<script>
function validateForm() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
var correctUsername = "ubuntu";
var correctPassword = "ubuntu";
if (username === correctUsername && password === correctPassword) {
window.location.href = "https://wolfge3.gitee.io/time-management";
return false;
} else {
alert("wrong password");
return false;
}
}
</script>
</head>
<body>
<h2>log in</h2>
<form onsubmit="return validateForm()">
<label for="username">account number:</label>
<input type="text" id="username" required><br><br>
<label for="password">login password:</label>
<input type="password" id="password" required><br><br>
<input type="submit" value="submit">
</form>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wolfge3/website-password.git
git@gitee.com:wolfge3/website-password.git
wolfge3
website-password
网站密码
master

搜索帮助