HTML 登錄界面網頁代碼
以下是一個基本的 HTML 登錄界面網頁代碼,它包含一個輸入用戶名和密碼的表單,以及一個登錄按鈕:
<!DOCTYPE html> <html> <head> <title>登錄</title> <meta charset="UTF-8"> </head> <body> <h1>登錄</h1> <form action="login.php" method="post"> <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" required> </p> <p> <button type="submit">登錄</button> </p> </form> </body> </html>在上面的代碼中,<form> 元素指定了表單的動作和提交方式。 <input> 元素用于創建輸入字段,其中,type 屬性的值 "text" 表示文本輸入框, "password" 表示密碼框。<button> 元素用于創建按鈕。<label> 元素用于為輸入字段定義標簽,其中, for 屬性的值與相應的輸入字段的 id 屬性相匹配。 要構建更復雜的登錄界面,可以添加其他元素,例如“記住密碼”選項、忘記密碼鏈接以及社交媒體登錄按鈕。