用戶注冊(cè)
歡迎來(lái)到我們的網(wǎng)站,請(qǐng)?zhí)顚?xiě)下面的表格完成注冊(cè)。
<html> <head> <meta charset="UTF-8"> <title>用戶注冊(cè)頁(yè)面</title> </head> <body> <h1>用戶注冊(cè)</h1> <p>歡迎來(lái)到我們的網(wǎng)站,請(qǐng)?zhí)顚?xiě)下面的表格完成注冊(cè)。</p> <form> <p> <label for="username">用戶名:</label> <input type="text" id="username" name="username" required> </p> <p> <label for="password">密碼:</label> <input type="password" id="password" name="password" minlength="6" required> </p> <p> <label for="confirmPassword">確認(rèn)密碼:</label> <input type="password" id="confirmPassword" name="confirmPassword" minlength="6" required> </p> <p> <label for="email">郵箱:</label> <input type="email" id="email" name="email" required> </p> <p> <input type="submit" value="注冊(cè)"> <input type="reset" value="重置"> </p> </form> </body> </html>