HTML用戶登錄代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>用戶登錄</title> </head> <body> <form action="" method="post"> <p> <label for="username">用戶名:</label> <input type="text" id="username" name="username"> </p> <p> <label for="password">密碼:</label> <input type="password" id="password" name="password"> </p> <p> <input type="submit" value="登錄"> </p> </form> </body> </html>
這是一個簡單的HTML用戶登錄代碼,包含兩個輸入框和一個提交按鈕。用戶在用戶名輸入框和密碼輸入框中輸入相應的信息,然后點擊登錄按鈕完成登錄操作。
下一篇鼠標沙漏狀 css