在網(wǎng)站開發(fā)中,用戶登陸是非常重要的一項(xiàng)功能,下面是一個(gè)簡(jiǎn)單的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>
此代碼包含了一個(gè)HTML表單,該表單有兩個(gè)輸入字段(用戶名和密碼),并通過“POST”方法在“l(fā)ogin.php”文件中進(jìn)行提交。其它的表單驗(yàn)證操作可以在后臺(tái)進(jìn)行,例如在PHP中驗(yàn)證用戶名和密碼的正確性。需要注意的是,密碼字段要用“password”類型而不是“text”類型,以保護(hù)用戶隱私。