使用HTML、CSS和Javascript编写一个注册界面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>注册页面(二)</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
}
form {
display: flex;
flex-direction: column;
width: fit-content;
}
form label {
padding: 10px 0;
}
form input {
padding: 10px;
margin-bottom: 15px;
width: 200px;
border: 1px solid #ccc;
}
form button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
form button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<form id="registration-form">
<label for="username">用户名:</label>
<input type="text" id="username" required>
<label for="email">邮箱:</label>
<input type="email" id="email" required>
<label for="password">密码:</label>
<input type="password" id="password" required>
<button type="submit">注册</button>
</form>
<script>
const form = document.getElementById('registration-form');
form.addEventListener('submit', function(event) {
event.preventDefault();
const username = document.getElementById('username').value;
const email = document.getElementById('email').value;
const password = document.getElementById('password').value;
// 这里可以添加验证逻辑
// ...
// 假设验证通过,可以发送注册请求到服务器
// 使用 fetch API 或者 XMLHttpRequest 发送请求
// ...
alert('注册成功!');
});
</script>
</body>
</html>
这段代码添加了简单的验证逻辑检查,并假设验证通过后,可以发送注册信息到服务器。在实际应用中,你需要替换检查逻辑和发送注册信息到服务器的部分,以满足具体的需求。
评论已关闭