12345678910111213141516171819202122 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/6/29
- Time: 15:06
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>$Title$</title>
- </head>
- <body>
- <form action="http://localhost:8091/tmp_war_exploded/registServlet" method="get">
- 用户名:<input type="text" name="username" ><br>
- 验证码:<input type="text" name="code" style="width: 50px">
- <img src="http://localhost:8091/tmp_war_exploded/kaptcha.jpg" style="width: 100px;height: 28px"><br>
- <input type="submit" value="登录">
- </form>
- </body>
- </html>
|