1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/6/25
- Time: 14:22
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- <base href="http://localhost:8090/TestServlet10_war_exploded/">
- <link type="text/css" rel="stylesheet" href="static/css/style.css">
- <script type="text/javascript" src="static/script/jquery-1.7.2.js"></script>
- <style type="text/css">
- .login_form{
- height:420px;
- margin-top: 25px;
- }
- </style>
- </head>
- <body>
- <div id="login_header">
- <img class="logo_img" alt="" src="static/img/img01.jpg" >
- </div>
- <div class="login_banner">
- <div id="l_content">
- <span class="login_word">欢迎注册</span>
- </div>
- <div id="content">
- <div class="login_form">
- <div class="login_box">
- <div class="tit">
- <h1>注册会员</h1>
- <span class="errorMsg">
- <%-- <%=request.getAttribute("msg")==null?"":request.getAttribute("msg")%>--%>
- ${requestScope.msg}
- </span>
- </div>
- <div class="form">
- <form action="userServlet" method="post">
- <input type="hidden" name="action" value="regist">
- <label>用户名称:</label>
- <input class="itxt" type="text" placeholder="请输入用户名"
- value="${requestScope.username}"
- autocomplete="off" tabindex="1" name="username" id="username"/>
- <br />
- <br />
- <label>用户密码:</label>
- <input class="itxt" type="password" placeholder="请输入密码" autocomplete="off" tabindex="1" name="password" id="password" />
- <br />
- <br />
- <label>确认密码:</label>
- <input class="itxt" type="password" placeholder="确认密码" autocomplete="off" tabindex="1" name="repwd" id="repwd" />
- <br />
- <br />
- <label>电子邮件:</label>
- <input class="itxt" type="text" placeholder="请输入邮箱地址"
- value="${requestScope.email}"
- autocomplete="off" tabindex="1" name="email" id="email" />
- <br />
- <br />
- <label>验证码:</label>
- <input class="itxt" type="text" name="code" style="width: 150px;" id="code"/>
- <img alt="" src="static/img/code.bmp" style="float: right; margin-right: 40px">
- <br />
- <br />
- <input type="submit" value="注册" id="sub_btn" />
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div id="bottom">
- <span>
- www.sziit.edu.cn
- </span>
- </div>
- </body>
- </html>
|