zoukankan      html  css  js  c++  java
  • 注册页面

    <!doctype html>
    <html lang="en">
     <head>
    
      <meta name="Generator" content="EditPlus?">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
      <title>Document</title>
     </head>
     <body>
     <center>
     <h1>用户注册</h1>
     <hr>
    
     <tr>
     <form name="regFrom" action="regok.html" method="Get">
    <table width="600" hborder="0" cellspacing="0" cellpadding="0">
    
    
    <tr>
    <td>用户名:</td>
    <td><input type="text" name="username" /></td>
    </tr>
    
    <tr>
    <td>密码:</td>
    <td><input type="password" name="password"/></td>
    
    </tr>
    
    
    <tr>
    <td>缺人密码:</td>
    <td><input type="password" name="confirm password"/></td>
    
    </tr>
    
    <tr>
    <td>电子邮箱:</td>
    <td><input type="text" name="email"/></td>
    
    </tr>
    
    <tr>
    <td>性别:</td>
    
    <!--value提交给服务器的值-->
    <td><input type="radio" name="gender" value="1" checked/>男<input type="radio" name="gender" value="0"/>女</td>
    
    </tr>
    
    
    <tr>
    <td>学历:</td>
    
    <!--value提交给服务器的值-->
    <td><select name="education">
    <option value="-1" selected>---请选择---</option>
    <option value="0">小学</option>
    <option value="1">初中</option>
    <option value="2">高学</option>
    <option value="3">大专</option>
    
    <option value="4">本科</option>
    
    </select>
    
    </td>
    
    </tr>
    
    
    
    <tr>
    <td>爱好:</td>
    <td><input type="checkbox" name="facorite" values="read"/>读书
    <input type="checkbox" name="facorite" values="music"/>音乐
    <input type="checkbox" name="facorite" values="internet"/>上网
    <input type="checkbox" name="facorite" values="shopping"/>购物
    <input type="checkbox" name="facorite" values="movie"/>电影
    
    <input type="checkbox" name="facorite" values="other"/>其它
    
    
    </td>
    
    </tr>
    
    
    
    <tr>
    <td>上传头像:</td>
    <td><input type="file" name="picture" values="read"/>
    
    
    
    
    </td>
    
    </tr>
    
    
    
    
    <tr>
    <td>服务协议:</td>
    <td>
    <textarea rows="10" cols="20">
    霸王条款,霸王条款,霸王条款,霸王条款,霸王条款,霸王条款,霸王条款,霸王条款,
    
    </textarea>
     
    </td>
    
    </tr>
    
    
    
    <tr>
    <td>是否接受协议:</td>
    <td><input type="checkbox" name="email" checked/></td>
    
    </tr>
    
    
    
    <tr>
    <td colspan="2"><input  type="submit" value="注册"/>
    <input  type="reset" value="取消"/>
    </td>
    
    
    </tr>
    
    
    </table>
     </form>
      
     </body>
    </html>
    
    
    --------------------------------------------------------------
    
    <!doctype html>
    <html lang="en">
     <head>
      <meta name="Generator" content="EditPlus?">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
      <title>Document</title>
     </head>
     <body>
      
      <center>
      <h1>注册成功</h1>
      </center>
     </body>
    </html>

  • 相关阅读:
    「vue基础」一篇浅显易懂的 Vue 路由使用指南( Vue Router 下)
    「vue基础」一篇浅显易懂的 Vue 路由使用指南( Vue Router 上)
    mocha_JavaScript单元测试框架
    Node介绍
    javascript 时间格式化
    MacOS安装MongoDB
    wordpress创建过程
    博客框架推荐
    github基本使用
    基本操作3-分支冲突
  • 原文地址:https://www.cnblogs.com/zhaoyangjian724/p/6200237.html
Copyright © 2011-2022 走看看