mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-13 20:22:35 +08:00
更新于 07-05 01:41
This commit is contained in:
@ -12,6 +12,7 @@
|
||||
<title>JSTOOL控制面板</title>
|
||||
<script type="text/javascript" src="./js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="./js/sweetalert2.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="./css/main2.css">
|
||||
<link href="./css/layui.css" rel="stylesheet" type="text/css">
|
||||
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
||||
<link href="./css/index_style.css" rel="stylesheet" type="text/css">
|
||||
@ -26,7 +27,7 @@
|
||||
<div class="login-form">
|
||||
<h1>JSTOOL控制面板</h1>
|
||||
<form action="auth" method="POST">
|
||||
<input class="layui-btn-normal" type="text" name="username" class="username" placeholder="用户名" required>
|
||||
<input class="layui-btn" type="text" name="username" class="username" placeholder="用户名" required>
|
||||
<input class="layui-btn" type="password" name="password" class="password" placeholder="密码" required>
|
||||
<input class="layui-btn layui-btn-normal" type="submit" id="login" value="登录">
|
||||
</form>
|
||||
|
45
panel/public/css/main2.css
Executable file
45
panel/public/css/main2.css
Executable file
@ -0,0 +1,45 @@
|
||||
/* Login page */
|
||||
.login-form {
|
||||
width: 300px;
|
||||
height: 450px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
font-family: Tahoma, Geneva, sans-serif;
|
||||
}
|
||||
|
||||
.login-form h1 {
|
||||
text-align: center;
|
||||
color: #000000;
|
||||
font-size: 24px;
|
||||
padding: 20px 0 20px 0;
|
||||
}
|
||||
|
||||
.login-form input[type="password"],
|
||||
.login-form input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
border: 1px solid #dddddd;
|
||||
margin-bottom: 15px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 11px 11px 11px 11px;
|
||||
-moz-border-radius: 11px 11px 11px 11px;
|
||||
-webkit-border-radius: 11px 11px 11px 11px;
|
||||
}
|
||||
|
||||
.login-form input[type="submit"] {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
background-color: #6D8A88;
|
||||
border: 0;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
border-radius: 11px 11px 11px 11px;
|
||||
-moz-border-radius: 11px 11px 11px 11px;
|
||||
-webkit-border-radius: 11px 11px 11px 11px;
|
||||
}
|
Reference in New Issue
Block a user