regist_success.jsp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/6/25
  5. Time: 14:22
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Title</title>
  12. <img class="logo_img" alt="" src="static/img/img01.jpg" >
  13. <base href="http://localhost:8090/TestServlet10_war_exploded/">
  14. <link type="text/css" rel="stylesheet" href="static/css/style.css">
  15. <style type="text/css">
  16. h1 {
  17. text-align: center;
  18. margin-top: 200px;
  19. }
  20. h1 a {
  21. color:red;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div id="header">
  27. <img class="logo_img" alt="" src="static/img/img01.jpg" >
  28. <span class="wel_word"></span>
  29. <div>
  30. <span>欢迎<span class="um_span">会员</span>光临书城</span>
  31. <a href="../order/order.jsp">我的订单</a>
  32. <a href="../../index01.jsp">注销</a>&nbsp;&nbsp;
  33. <a href="../../index01.jsp">返回</a>
  34. </div>
  35. </div>
  36. <div id="main">
  37. <h1>注册成功! <a href="../../index01.jsp">转到主页</a></h1>
  38. </div>
  39. <div id="bottom">
  40. <span>
  41. www.sziit.edu.cn
  42. </span>
  43. </div>
  44. </body>
  45. </html>