下面是一個簡單的HTML用戶登錄注冊頁面代碼:
登錄
<form method="post" action="login.php"> <label>用戶名:</label> <input type="text" name="username"> <br> <label>密碼:</label> <input type="password" name="password"> <br> <input type="submit" value="登錄"> </form>
注冊
<form method="post" action="register.php"> <label>用戶名:</label> <input type="text" name="username"> <br> <label>密碼:</label> <input type="password" name="password"> <br> <label>確認密碼:</label> <input type="password" name="confirm_password"> <br> <input type="submit" value="注冊"> </form>使用以上代碼編寫的HTML頁面可以實現用戶登錄和注冊功能。其中,登錄頁面包含一個表單,包含用戶名和密碼輸入框和一個“登錄”按鈕,表單的提交地址為“login.php”;注冊頁面也包含一個表單,包含用戶名和密碼輸入框以及確認密碼輸入框和一個“注冊”按鈕,表單的提交地址為“register.php”。這些表單都通過method屬性設置為“post”,表示使用POST方法向服務器提交數據。在輸入框和標簽之間使用了實體字符,這是因為HTML中一些字符具有特殊含義,需要使用實體字符來表示它們的字面意義。