Registration page - red stripe version

mutual

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>LOGIN Web</title>  <!--网页名字-->
    <!--<link rel="stylesheet" href="css%20样式表.css">-->
    <!--<style>h1{color: gold}</style>-->
</head>
<body>
    <h1 style="color: red">&nbsp;&nbsp;&nbsp;&nbsp;欢迎注册!</h1>
    <form action="http://127.0.0.1:8000/index/" method="post" enctype="">
        <p><label for="d1" style="color: darkred">
            &nbsp;&nbsp;&nbsp;&nbsp;用&#160;户&#160;名&#160;:
            <input type="text" id="d1"  name="username" value="" >
        </label></p>
        <p><label for="d2" style="color: darkred">
            &nbsp;&nbsp;&nbsp;&nbsp;密&#160;&#160;&#160;&#160;&#160;码&#160;:
            <input type="password" id="d2" name="password" value="">
        </label></p>
        <p><label for="d2" style="color: darkred">
            &nbsp;&nbsp;&nbsp;&nbsp;确认密码:<input type="password" id="d2">
        </label></p>

        <p style="color: darkred">
            &nbsp;&nbsp;&nbsp;&nbsp;生&#160;&#160;&#160;&#160;&#160;&#160;日:
            <input type="date" name="birthday" value=""></p>
        <p style="color: darkred">
            &nbsp;&nbsp;&nbsp;&nbsp;性&#160;&#160;&#160;&#160;&#160;&#160;别:
            <input type="radio" name="gender" value="male">男
            <input type="radio" name="gender" value="female">女 </p>

        <p style="color: blue">
            &nbsp;&nbsp;&nbsp;&nbsp;爱&#160;&#160;&#160;&#160;&#160;&#160;好:
            <input type="checkbox" name="hobby" value="basketball"> 花滑
            <input type="checkbox" name="hobby" value="football">   马术
            <input type="checkbox"  checked name="hobby" value="volleyball"> 钢琴
        </p>
        <p style="color: orange">
            &nbsp;&nbsp;&nbsp;&nbsp;当前城市:
            <select name="Provence" id="">
                <option value="shh">上海</option>
                <option value="bj">北京</option>
                <option value="gz">广州</option>
            </select>
        </p>

        <p>&nbsp;&nbsp;&nbsp;&nbsp;自我介绍:
            <textarea name="info" id="" cols="100" rows="10"></textarea>
        </p>
        <p>&nbsp;&nbsp;&nbsp;&nbsp;个人简历:
            <input type="file"  name="myfile">
        </p>
        <p>
            <!--<input type="button" value="普通按钮">-->
            <!--<input type="reset" value="重置按钮">-->
            <input type="submit" value="确认并提交">
        </p>

    </form>
</body>
</html>

Guess you like

Origin www.cnblogs.com/allenchen168/p/11854417.html