用html做一个app登入界面
时间: 2024-02-01 22:03:37 浏览: 137
使用html语言设计登陆界面
好的,以下是一个简单的HTML和CSS代码示例,可以作为一个app登入界面的基础:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="login-container">
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</div>
<script src="login.js"></script>
</body>
</html>
```
```css
.login-container {
margin: auto;
text-align: center;
width: 90%;
max-width: 400px;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
label {
font-size: 1.2em;
margin-bottom: 10px;
}
input {
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
button {
padding: 10px 20px;
background-color: #0072c6;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1.2em;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
button:hover {
background-color: #005ea2;
}
```
这段代码包括了一个简单的app登入界面的基本结构和样式。您可以根据实际需求修改页面结构和样式。同时,您还需要编写相应的JavaScript代码来实现页面的交互效果,例如验证用户名和密码是否正确、跳转到主页面等等。
阅读全文