<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>农资商登记表单和提交表单</title> </head> <body> <form action="" method="post"> <table border="1" cellspacing="1" cellpadding="8" width="600" bgcolor="powderblue"> <caption><h3>农 资 商 提 交 信 息</h3></caption> <tr><td colspan="2"><hr></td></tr> <tr> <td width="60"><label for="name">姓名:</label></td> <td width="300"><input type="text" id="name" name="name" value="" placeholder="你的名字" size="30" width="200"></td> </tr> <tr> <td width="60"><label for="tel">手机号:</label></td> <td width="300"><input type="text" id="tel" name="tel" value="" placeholder="手机号" size="30" width="200"></td> </tr> <tr> <td><label for="password">密码:</label></td> <td><input type="text" id="password" name="name" value="" placeholder="字母+数字不少于10位" size="30"></td> </tr> <tr> <td>所属区域:</td> <td> <input type="radio" name="sex" value="quyu1" checked="">江津区 <input type="radio" name="sex" value="quyu2">巴南区 <input type="radio" name="sex" value="quyu3" >永川区 <input type="radio" name="sex" value="quyu3" >璧山区 </td> </tr> <tr> <td>销售范围:</td> <td> <input type="checkbox" name="happy[]" value="shouru1" checked="">种子 <input type="checkbox" name="happy[]" value="shouru2">农药 <input type="checkbox" name="happy[]" value="shouru3">肥料 <input type="checkbox" name="happy[]" value="shouru4" >农具 <input type="checkbox" name="happy[]" value="shouru4" >其它 </td> </tr> <tr> <td><label for="level">经营目标:</label></td> <td> <select name="level" id="level"> <option value="" selected="">二十万</option> <option value="" >三十万</option> <option value="">四十万</option> <option value="">五十万</option> <option value="">六十万</option> <option value="">七十万</option> </select> </td> </tr> <tr> <td><label for="photo">照片:</label></td> <td> <img src="../images/13.png" height="30"> <input type="file" id="" name="photo" accept="image/*"> </td> </tr> <tr> <td valign="middle"><label>个人简介:</label></td> <td><textarea name="comment" id="comment" rows="5" cols="40" placeholder="请填写个人简介!"></textarea></td> </tr> <tr> <td colspan="2"> <hr> <input type="submit" name="submit" value="提交"> <input type="reset" name="reset" value="重填"> </td> </tr> </table> </form> <hr> <form action="" method="post"> <div style="width:50%;text-align:center;margin-right: auto;margin-left: auto;"> <fieldset > <legend>用户登录</legend> <p><label>手机号:<input type="email" name="email" placeholder="手机号"></label></p> <p><label>密码:<input type="email" name="email" placeholder="Password"></label></p> <hr width="90%" color="lightskyblue"> <p><button type="submit" name="submit">立即登录</button></p> </fieldset> </div> </form> </body> </html>