• 7.11登入表单html


    <!DOCTYPE html>
    <html>
     <head>
       <meta charset="UTF-8">
       <title>用户注册</title>
     </head>
     <body background="./imgs/龙猫.jpg">
       <form action="#" method="post">  
         <table border="0px" width="600px" height="400px" align="center" cellpadding="0px" cellspacing="0px">
           <tr height="40px" >
             <td colspan="2">
               <font size="4" ><b>用户注册&nbsp;USER REGISTER</b></font>
             </td>
           </tr>
           <tr>
             <td align="center"><b>用户名</b></td>
             <td><input type="text" name="user"/></td>
           </tr>
           <tr>
             <td align="center"><b>密码</b></td>
             <td><input type="password" name="password"/></td>
           </tr>
           <tr>
             <td align="center"><b>确认密码</b></td>
             <td><input type="password" name="rpassword"/></td>
           </tr>
           <tr>
             <td align="center"><b>Email</b></td>
             <td><input type="text" name="email"/></td>
           </tr>
           <tr>
             <td align="center"><b>姓名</b></td>
             <td><input type="text" name="username"/></td>
           </tr>
           <tr>
             <td align="center"><b>性别</b></td>
             <td>
               <input type="radio" name="sex" value="男"/><input type="radio" name="sex" value="女"/></td>
           </tr>
           <tr>
             <td align="center" ><b>出生日期</b></td>
             <td> <input type="text" name="birthday" size="30px"/></td>
           </tr>
           <tr>
             <td align="center"><b>验证码</b></td>
             <td> <input type="text" name="yzm" />
               <img src="../img/yzm.png" width="60" height="30"/>
             </td>
           </tr>
           <tr>
             <td colspan="2" align="center">
                <input type="submit" value="注册" />
                <input type="reset" value="重置" />
             </td>        
           </tr>
         </form>
       </table>
     </body>
    </html>
  • 相关阅读:
    day11_获取前一条用例的结果(用参数化实现)
    day11_获取前一条用例的结果
    codeforce 1433F
    codeforces 1428 D. Bouncing Boomerangs (贪心)
    codeforces 761C
    codeforces 839C
    codeforces 859C
    codeforces 858C Did you mean... (贪心)
    codeforces 855B
    st表
  • 原文地址:https://www.cnblogs.com/zhen1996/p/9292858.html
Copyright © 2020-2023  润新知