123456789101112131415161718192021222324252627282930 |
- <%--
- Created by IntelliJ IDEA.
- User: 武恒
- Date: 2023/2/4
- Time: 16:19
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width">
- <title>欢迎登陆</title>
- </head>
- <body>
- <div style=" width: 300px; margin: 0 auto; margin-top: 200px;">
- <form action="<%=request.getContextPath()+"/admin/login"%>" method="get">
- <fieldset style=" height: 160px; padding: 20px;">
- <legend>登陆后台管理系统</legend>
- <p>用户名:<input type="text" name="username" style="width: 150px; height: 20px;" /> </p>
- <p>密 码:<input type="password" name="password" style="width: 150px; height: 20px;" /> </p>
- <p><input type="submit" value="提交" style="width: 80px; height: 25px;float: right; margin-right: 30px;text-align: center;line-height: 25px;" /> </p>
- </fieldset>
- </form>
- <p>祝您学习进步心想事成!!</p>
- </div>
- </body>
- </html>
|