以下是一个使用 PHP 编写的简单注册页面,并对代码进行注释和页面进行简单的美化:
<!-- HTML 页面 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="register">
<h1>注册</h1>
<?php
// 获取表单提交的数据
$username = $_POST['username'];
$password = $_POST['password'];
$email = $_POST['email'];
// 如果表单已提交
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// 验证用户输入
if (!empty($username) && !empty($password) && !empty($email)) {
// 保存用户数据到数据库中
// 这里只是模拟保存数据的操作,实际上应该使用数据库 API
$message = '恭喜您,注册成功!';
} else {
// 显示错误提示
$message = '用户名、密码和邮箱不能为空!';
}
}
?>
<?php if (isset($message)) { ?>
<p class="message"><?php echo $message ?></p>
<?php } ?>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">
<input type="text" name="username" placeholder="用户名" required>
<input type="password" name="password" placeholder="密码" required>
<input type="email" name="email" placeholder="邮箱" required>
<button type="submit">注册</button>
</form>
</div>
</body>
</html>
上述代码与登录页面类似,使用 HTML 表单获取用户输入的用户名、密码和邮箱,并使用 PHP 代码接收并验证数据。如果用户输入的数据不为空,则将其保存到数据库中(这里只是模拟保存数据的操作),并显示成功提示;否则显示错误提示。代码经过注释如下:
<!-- HTML 页面 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册</title>
<link rel="stylesheet" href="styles.css"> <!-- 引入 CSS 样式表 -->
</head>
<body>
<div class="register"> <!-- 开始注册界面的 DIV 容器 -->
<h1>注册</h1> <!-- 显示注册标题 -->
<?php
// 获取表单提交的数据
$username = $_POST['username'];
$password = $_POST['password'];
$email = $_POST['email'];
// 如果表单已提交
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// 验证用户输入
if (!empty($username) && !empty($password) && !empty($email)) {
// 保存用户数据到数据库中
// 这里只是模拟保存数据的操作,实际上应该使用数据库 API
$message = '恭喜您,注册成功!';
} else {
// 显示错误提示
$message = '用户名、密码和邮箱不能为空!';
}
}
?>
<?php if (isset($message)) { ?> <!-- 如果有提示信息 -->
<p class="message"><?php echo $message ?></p> <!-- 显示提示信息 -->
<?php } ?>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">
<!-- 显示注册表单 -->
<input type="text" name="username" placeholder="用户名" required>
<input type="password" name="password" placeholder="密码" required>
<input type="email" name="email" placeholder="邮箱" required>
<button type="submit">注册</button>
</form>
</div> <!-- 结束注册界面的 DIV 容器 -->
</body>
</html>
除此之外,我们还可以添加 CSS 样式表来美化注册页面。例如,以下是一个简单的 CSS 样式表,可为注册界面添加一些基本样式:
.register {
width: 400px;
margin: 50px auto;
text-align: center;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #666;
background-color: #fff;
}
h1 {
margin-top: 0;
color: #333;
font-weight: normal;
}
input[type="text"],
input[type="password"],
input[type="email"],
button {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
outline: none;
box-shadow: 0px 0px 5px #ccc;
}
button[type="submit"] {
background-color: #39f;
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease;
}
button[type="submit"]:hover {
background-color: #66a6e1;
}
.message {
color: #4CAF50;
}
最终,经过以上步骤,我们可以获得一个简单美观的注册页面。