请编写一个网站登入界面
时间: 2023-02-22 19:12:41 浏览: 144
网站登陆界面
编写网站登录界面需要使用 HTML、CSS 和 JavaScript 等 Web 开发技术。以下是一个简单的示例代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录界面</title>
<style>
/* 用 CSS 样式美化界面 */
.container {
width: 400px;
margin: 100px auto;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="submit"] {
width: 100%;
padding: 10px;
border-radius: 5px;
background-color: #4CAF50;
color: white;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<form>
<h1>登录</h1>
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
<label for="password">密码:</label>
<input type="password" id="password" name="password">
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
```
请注意,这仅仅是一个静态登录界面的示例代码,并不能够实际执行登录功能,需要使用后端语言(例如 PHP、Java、Python 等)进行验证和处理。
阅读全文