This commit is contained in:
limqhz
2022-05-11 22:47:44 +08:00
parent 03d805641a
commit 4eadfe16f3
30 changed files with 2252 additions and 119 deletions

View File

@@ -8,16 +8,14 @@
<link rel="stylesheet" th:href="@{/css/login.css}">
</head>
<body class="text-center">
<form class="form-signin" th:action="@{/login}" method="post">
<form class="form-signin needs-validation" th:action="@{/login}" method="post">
<img class="mb-4" th:src="@{/images/logo/logo.png}" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">登录</h1>
<input name="username" class="form-control" placeholder="用户名" required="">
<input type="password" name="password" class="form-control" placeholder="密码" required="">
<div class="checkbox mb-3">
<div class="checkbox float-left mb-3">
<label>
<input type="checkbox" name="remember" value="remember-me"> 记住密码
</label>
@@ -29,9 +27,13 @@
<a th:href="@{/register}" class="float-right">没有账号?去注册</a>
</p>
<p class="mt-5 mb-3 text-muted">©QUINN</p>
<p class="badge badge-pill badge-light">©QUINN</p>
</form>
<a class="to-top badge badge-light">返回顶部</a>
<script th:src="@{/js/jquery-3.5.1.min.js}"></script>
<script th:src="@{/bootstrap/js/bootstrap.bundle.min.js}"></script>
<script th:src="@{/js/toTop.js}"></script>
<script th:src="@{/js/jquery-ui.min.js}"></script>
<script th:src="@{/live/js/addlive2d.js}"></script>
</body>
</html>