用戶名:
密碼:
確認密碼:
郵箱:
手機號:
<html> <head> <meta charset="UTF-8"> <title>用戶注冊</title> </head> <body> <form action="register.php" method="post"> <p>用戶名:<input type="text" name="username"></p> <p>密碼:<input type="password" name="password"></p> <p>確認密碼:<input type="password" name="confirmPassword"></p> <p>郵箱:<input type="text" name="email"></p> <p>手機號:<input type="text" name="phone"></p> <p><input type="submit" value="注冊"></p> </form> </body> </html>