国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML page of PHP development registration page

4.jpg

The registration page above has 4 <input> input boxes, a button button, and a verification code. The code is as follows

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>PHP中文網</title>
</head>
<body>
<form action="" method="post">
    <div class="container">
        <div class="right">
            <h2>用戶注冊</h2>

            <p>用 戶 名:<input type="text" name="name" id="name"></p>
            <p>密  碼: <input type="password" name="pwd" id="pwd"></p>
            <p>確認密碼: <input type="password" name="pwdconfirm" id="pwdconfirm"></p>
            <p>驗 證 碼:<input type="text" name="yzm" id="yzm"></p>
            <p><button type="submit" value="注冊" >立即注冊</button></p>
        </div>
    </div>
</form>
</body>
</html>

The above code will give us The four <input> input boxes and one button button used in the registration page are displayed, but since the page does not have css styles, it is very unsightly, so in the next chapter we will make some css styles on our page

Continuing Learning
||
<!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP中文網</title> </head> <body> <form action="" method="post"> <div class="container"> <div class="right"> <h2>用戶注冊</h2> <p>用 戶 名:<input type="text" name="name" id="name"></p> <p>密  碼: <input type="password" name="pwd" id="pwd"></p> <p>確認密碼: <input type="password" name="pwdconfirm" id="pwdconfirm"></p> <p>驗 證 碼:<input type="text" name="yzm" id="yzm"></p> <p><button type="submit" value="注冊" >立即注冊</button></p> </div> </div> </form> </body> </html>
submitReset Code