制作一个登录表单(包含用户名和密码,登录及清除按钮)
时间: 2024-10-17 08:11:32 浏览: 34
JQuery记住用户名密码实现下次自动登录功能
制作一个简单的登录表单可以使用HTML结构和一些基本的CSS进行美化。下面是示例代码:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>登录表单</title>
<style>
body {
font-family: Arial, sans-serif;
}
.login-form {
max-width: 300px;
margin: auto;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
border-radius: 4px;
}
button:hover {
opacity: 0.8;
}
.clear-btn {
display: none; /* 隐藏初始的清除按钮 */
}
</style>
</head>
<body>
<div class="login-form">
<form id="loginForm" action="#" method="post">
<label for="username">用户名:</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">密码:</label><br>
<input type="password" id="password" name="password"><br>
<button type="submit">登录</button>
<button class="clear-btn" onclick="clearFields()">清除</button>
</form>
</div>
<script>
function clearFields() {
document.getElementById('username').value = '';
document.getElementById('password').value = '';
document.getElementsByClassName('clear-btn')[0].style.display = 'none'; // 显示登录按钮,隐藏清除按钮
}
</script>
</body>
</html>
```
此代码定义了一个登录表单,包括用户名输入框、密码输入框以及登录和清除按钮。清除按钮会在用户点击登录后显示,用于清空输入字段。
阅读全文