登记register.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <!-- form:post>table>(tr>td*2)*6   tad -->
    <form action="09_register.php" method="post">
        <table width="800" cellpadding="10" cellspacing="0" border="1" align="center">
            <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="password2"></td>
            </tr>
            <tr>
                <td>性别</td>
                <td>
                    男<input type="radio" name="sex" value="1">
                    女<input type="radio" name="sex" value="0">
                </td>
            </tr>
            <tr>
                <td>邮箱</td>
                <td><input type="text" name="email"></td>
            </tr>
            <tr>
                <td></td>
                <td><input type="submit" name="submit" value="提交"></td>
            </tr>
        </table>
    </form>
</body>
</html>
posted @ 2020-03-11 22:21  lujieting0  阅读(428)  评论(0编辑  收藏  举报