This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2024-12-20 23:41:14 +08:00
|
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<script src="https://www.liyansheng.top/cdn/watermark.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h2>-电脑商城-用户登录</h2>
|
|
|
|
<form action="login" method="post">
|
|
|
|
<label for="username">用户名:</label>
|
|
|
|
<input type="text" id="username" name="username" required><br><br>
|
|
|
|
<label for="password">密码:</label>
|
|
|
|
<input type="password" id="password" name="password" required><br><br>
|
|
|
|
<button type="submit">登录</button>
|
2024-12-21 14:57:05 +08:00
|
|
|
<a href="/register">没有账号?去注册</a>
|
2024-12-20 23:41:14 +08:00
|
|
|
</form>
|
|
|
|
<br>
|
2024-12-21 00:49:55 +08:00
|
|
|
${requestScope.msg}
|
2024-12-20 23:41:14 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|