【HTML | CSS | JAVASCRIPT】一款可交互的响应式登陆注册表单
以下是一个简单的可互动响应式登录注册表单的HTML和CSS代码示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login/Register Form</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 24px;
}
form {
display: flex;
flex-direction: column;
max-width: 400px;
margin: 0 auto;
padding: 20px;
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
input[type="text"], input[type="password"] {
margin: 10px 0;
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
margin-top: 10px;
padding: 10px 20px;
font-size: 16px;
background: #333;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background: #555;
}
@media (max-width: 600px) {
form {
max-width: none;
width: 90%;
}
}
</style>
</head>
<body>
<form action="">
<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">
<hr>
<input type="checkbox" id="register" name="register">
<label for="register">No account? Register here.</label>
</form>
</body>
</html>
这个简单的登录注册表单包括了基本的HTML结构、CSS样式和一些响应式布局的调整。在移动设备上,表单宽度会自适应屏幕宽度。用户可以通过点击复选框来选择是直接登录还是注册一个新账号。这个例子旨在展示如何结合HTML、CSS和基本的JavaScript来创建一个基本的用户认证流程。
评论已关闭