HTML写一个登录界面
时间: 2023-02-20 07:47:18 浏览: 7
<html>
<head>
<title>登录界面</title>
</head>
<body>
<form action="login.php" method="post">
用户名:<input type="text" name="username" /> <br/>
密码:<input type="password" name="password" /> <br/>
<input type="submit" value="登录" />
</form>
</body>
</html>
相关问题
利用html写一个登陆界面
好的,以下是一个简单的 HTML 登录界面的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username"><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password"><br><br>
<input type="submit" value="Login">
</form>
</body>
</html>
```
这是一个基本的登录界面,其中包括用户名和密码输入框以及登录按钮。当用户点击登录按钮时,表单将被提交到服务器进行验证。
用html写一个登陆界面
以下是一个简单的HTML登陆界面示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
background-color: #fff;
border-radius: 5px;
padding: 20px;
box-shadow: 0px 0px 10px #ccc;
max-width: 400px;
margin: 0 auto;
margin-top: 50px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
border: none;
border-radius: 3px;
margin-bottom: 15px;
box-shadow: 0px 0px 5px #ccc;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 3px;
padding: 10px;
cursor: pointer;
font-size: 16px;
float: right;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
}
</style>
</head>
<body>
<form>
<h1>Login</h1>
<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>
<input type="submit" value="Login">
</form>
</body>
</html>
```
这个登陆界面包括一个标题、两个输入框(一个用于输入用户名,另一个用于输入密码)和一个提交按钮。当用户点击提交按钮时,表单将被提交到服务器进行处理。你可以在服务器端使用编程语言(如PHP、Python、Java等)来验证用户输入的用户名和密码是否正确,如果正确则允许用户登录。
阅读全文