亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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中文網(wǎng)</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中文網(wǎng)</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