HTML 登錄及注冊頁面代碼是指用于實現用戶登錄及注冊功能的網頁代碼,主要包括登錄頁和注冊頁的代碼。
登錄頁的代碼包括輸入框、登錄按鈕等基本元素,代碼如下:
<form action="login.php" method="post"> <label>用戶名:</label> <input type="text" name="username" required> <label>密碼:</label> <input type="password" name="password" required> <input type="submit" value="登錄"> </form>
登錄頁的代碼主要使用了form元素和input元素,其中action屬性指定表單提交到的處理頁面,method屬性指定表單的提交方式。input元素的type屬性指定了輸入框的類型,包括text、password等。required屬性表示該項必須填寫。
注冊頁的代碼也包括輸入框、注冊按鈕等基本元素,代碼如下:
<form action="register.php" method="post"> <label>用戶名:</label> <input type="text" name="username" required> <label>密碼:</label> <input type="password" name="password" required> <label>確認密碼:</label> <input type="password" name="confirm-password" required> <input type="submit" value="注冊"> </form>
注冊頁的代碼和登錄頁的代碼基本相同,主要區別在于多了一個確認密碼的輸入框。確認密碼和密碼必須一致,否則提示用戶重新輸入。