当前位置:首页 > 行业动态 > 正文

html如何设置登录界面

当设置登录界面时,可以使用HTML来创建网页的基本结构,下面是一个简单的登录界面的示例代码:

<!DOCTYPE html>
<html>
<head>
    <title>登录界面</title>
    <style>
        /* 在这里可以添加CSS样式来美化登录界面 */
        body {
            fontfamily: Arial, sansserif;
            backgroundcolor: #f2f2f2;
        }
        .container {
            width: 300px;
            padding: 16px;
            backgroundcolor: white;
            margin: 0 auto;
            margintop: 100px;
            border: 1px solid #ccc;
            borderradius: 4px;
        }
        input[type=text], input[type=password] {
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            display: inlineblock;
            border: 1px solid #ccc;
            boxsizing: borderbox;
        }
        button {
            backgroundcolor: #4CAF50;
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border: none;
            cursor: pointer;
            width: 100%;
        }
        button:hover {
            opacity: 0.8;
        }
    </style>
</head>
<body>
    <div >
        <label for="uname"><b>用户名</b></label>
        <input type="text" placeholder="输入用户名" name="uname" required>
        <label for="psw"><b>密码</b></label>
        <input type="password" placeholder="输入密码" name="psw" required>
        <button type="submit">登录</button>
    </div>
</body>
</html>

上述代码创建了一个简单的登录界面,包括用户名和密码输入框以及登录按钮,你可以根据需要对样式进行进一步调整和美化。

0