1 Star 0 Fork 0

真小白/web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
真小白 提交于 2023-11-19 05:59 . 上传文件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>请登陆</title>
<link rel="stylesheet" href="resources/css/bootstrap.min.css">
<link href="resources/css/login.css" type="text/css" rel="stylesheet" />
</head>
<body>
<script>
function check(form){
if (form.user.value === "") {
alert("请输入账号!");
return false;
}
if (form.password.value === "") {
alert("请输入密码!");
return false;
}
return true;
}
function check_login(){
}
</script>
<h1 style="margin: 50px 80px; color: darkgray; font-family: cursive;">欢迎来到选手评分系统</h1>
<div class="main">
<h5 class="title">
<a href="login.html" id="login">登录</a>
<b>&nbsp;·&nbsp;</b>
<a href="register.html" id="register">注册</a>
</h5>
<form action="audience/main.html" method="post" onsubmit="return check(this)">
<div class="form-group">
<select name="role" id="role" class="form-control role">
<option value="0">观众</option>
<option value="1">评委</option>
<option value="2">选手</option>
</select>
<input type="text" name="user" class="form-control user" placeholder="请输入用户名">
<input type="password" name="password" class="form-control password" placeholder="请输入密码">
<div class="remember-btn">
<input type="checkbox" name="remember" value="true">
<span>记住我</span>
</div>
<a href="forget.html" class="help">登录遇到问题?</a>
<input type="submit" value="登录" class="btn btn-primary btn-lg btn-block" />
</div>
</form>
</div>
<script src="resources/js/jquery-3.2.1.min.js"></script>
<script src="resources/js/popper.min.js"></script>
<script src="resources/js/bootstrap.min.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/really-small-white/web.git
git@gitee.com:really-small-white/web.git
really-small-white
web
web
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385