login.jsp 1.1 KB

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