在網站開發中,用戶登陸是非常重要的一項功能,下面是一個簡單的HTML用戶登陸代碼示例。
<form method="post" action="login.php"> <p> <label for="username">用戶名:</label> <input type="text" name="username" id="username" required> </p> <p> <label for="password">密碼:</label> <input type="password" name="password" id="password" required> </p> <p><input type="submit" value="登陸"></p> </form>
此代碼包含了一個HTML表單,該表單有兩個輸入字段(用戶名和密碼),并通過“POST”方法在“login.php”文件中進行提交。其它的表單驗證操作可以在后臺進行,例如在PHP中驗證用戶名和密碼的正確性。需要注意的是,密碼字段要用“password”類型而不是“text”類型,以保護用戶隱私。
上一篇vue顯示后端圖片