HTML表單是現代網站和應用程序中常用的元素之一。它可以用于收集和驗證用戶輸入數據,例如登錄頁面。下面是一個使用HTML表單創建登錄頁面的示例代碼:
<form action="login.php" method="post"> <label for="username">用戶名:</label> <input type="text" id="username" name="username" required> <br> <label for="password">密碼:</label> <input type="password" id="password" name="password" required> <br> <input type="submit" value="登錄"> </form>
在上面的代碼中,我們使用了<form>標簽來創建一個表單,其中action屬性指定表單提交數據的URL,method屬性指定表單提交數據的方式,這里我們使用HTTP POST方法。其余的表單元素包括<label>標簽用于描述輸入字段,<input>標簽用于創建實際的輸入字段,name屬性指定提交數據時的字段名,required屬性指示該字段為必填項,type屬性指定輸入字段的類型,例如text和password類型。
最后,我們使用<input>標簽創建一個提交按鈕,當用戶點擊該按鈕時,表單數據將被提交到指定的URL。
上一篇css 圖標旋轉180度
下一篇html電影影評代碼