加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 2.30 KB
一键复制 编辑 原始数据 按行查看 历史
275906780@qq.com 提交于 2018-10-17 22:55 . Lab management system
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>广东工业大学</title>
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet">
<!--<link href="images/Logo.ico" type="img/x-ico" rel="icon"/>-->
<style>
.container-fluid .logo{
text-align: center;
line-height: 100px;
background-color: #f9f9f9;
}
.container-fluid .content{
height: 350px;
font-size: 16px;
line-height: 22px;
margin: 150px 0;
background-color: #89cadd;
opacity: 0.8;
}
.container-fluid .content .title{
color: #FFFFFF;
font-size: 23px;
margin: 20px 45px 0;
}
.container-fluid .user, .container-fluid .powss{
margin-top: 20px;
}
.container-fluid .user span, .container-fluid .powss span{
font-size: 16px;
display: block;
margin-bottom: 5px;
}
.container-fluid input{
height: 45px;
line-height: 50px;
border: 1px solid #d4d4d4;
display: block;
width: 100%;
border-radius: 4px;
padding-left: 10px;
}
.link-submit{
text-align: center;
font-size: 18px;
}
.link-submit:hover{
background: #6abeed;
}
.create {
margin-top: 15px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="logo"><img src="images/GDUT_logo_school1.png"/></div>
<div style="background: url(images/GDUT_library.png) no-repeat; background-size: 100% 100%;">
<div class="row">
<div class="col-md-8 a"></div>
<div class="col-md-3 a content">
<form action="dologin.php" method="post">
<div style="text-align: center;"><p class="title">实验室管理系统</p></div>
<div class="user">
<span>用户ID<em style="color:red;">*</em></span>
<input type="text" name="userid" autocomplete="off" placeholder="请输入学号或工号"/>
</div>
<div class="powss">
<span>密码<em style="color:red;">*</em></span>
<input type="password" name="password" placeholder="请输入密码"/>
</div>
<br/>
<input class="link-submit" type="submit" name="submit" value="登录" />
<div class="create"><a href="register.php">立即注册</a> </div>
</form>
</div>
</div>
</div>
</div>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化