注册页面代码怎么写(html实现登录注册页面)
,我来为大家科普一下关于注册页面代码怎么写?下面希望有你要的答案,我们一起来看看吧!
注册页面代码怎么写
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>注册页面</title></head><body> <!-- 定义表单 --> <form action='#' method='post'> <table border='1' align='center' width='500'> <tr> <td><label for='username'>用户名</label></td> <td><input type='text' name='username' id='username'></td> </tr> <tr> <td><label for='password'>密码</label></td> <td><input type='password' name='password' id='password'></td> </tr> <tr> <td><label for='email'>Email</label></td> <td><input type='email' name='email' id='email'></td> </tr> <tr> <td><label for='name'>姓名</label></td> <td><input type='text' name='name' id='name'></td> </tr> <tr> <td><label for='tel'>手机号</label></td> <td><input type='text' name='tel' id='tel'></td> </tr> <tr> <td><label>性别</label></td> <td><input type='radio' name='gender' value='male'>男 <input type='radio' name='gender' value='female'>女 </td> </tr> <tr> <td><label for='birthday'>出生日期</label></td> <td><input type='date' name='birthday' id='birthday'></td> </tr> <tr> <td><label for='checkcode'>验证码</label></td> <td><input type='text' name='checkcode' id='checkcode'> <img src='image/verify_code.jpg"'> </td> </tr> <tr> <td colspan='2' align='center'><input type='submit' value='注册'> </td> </tr> </table> </form> </body></html>
免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com