23 lines
752 B
Plaintext
23 lines
752 B
Plaintext
<%@ 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>
|
|
<a href="/register">没有账号?去注册</a>
|
|
</form>
|
|
<br>
|
|
${requestScope.msg}
|
|
</body>
|
|
|
|
</html> |