HTML是一種用于創(chuàng)建Web頁(yè)面的標(biāo)記語(yǔ)言。它可以創(chuàng)建各種網(wǎng)站和應(yīng)用程序,其中包括登錄界面。下面展示的是一個(gè)HTML登錄界面的全部代碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>登錄界面</title> </head> <body> <form action="/" method="post"> <fieldset> <legend>登錄</legend> <label>用戶名:</label> <input type="text" name="username" required> <br> <label>密碼:</label> <input type="password" name="password" required> <br> <input type="submit" value="登錄"> </fieldset> </form> </body> </html>
在此代碼中,我們使用了<form>元素來(lái)創(chuàng)建登錄表單。其中,action屬性指定了表單提交的URL地址,method屬性指定了HTTP方法(GET或POST)。在<fieldset>元素中,我們使用了<legend>元素來(lái)設(shè)置表單標(biāo)題。此外,我們使用了<label>和<input>元素來(lái)創(chuàng)建用戶名和密碼輸入框,并標(biāo)明它們是必填項(xiàng)。