以下是一个简单的基于PHP的企业网站模板,适合用于华为云国际站代理商注册的目的。你可以根据自己的需求进行修改和完善:
index.php
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>华为云国际站代理商注册</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>华为云国际站代理商注册</h1>
</header>
<main>
<section>
<h2>注册成为代理商</h2>
<form action="register.php" method="post">
<label for="name">公司名称:</label>
<input type="text" id="name" name="name" required>
<label for="email">电子邮箱:</label>
<input type="email" id="email" name="email" required>
<label for="phone">联系电话:</label>
<input type="tel" id="phone" name="phone" required>
<label for="message">备注:</label>
<textarea id="message" name="message"></textarea>
<button type="submit">提交注册</button>
</form>
</section>
</main>
<footer>
<p>© 2024 华为云国际站代理商注册</p>
</footer>
</body>
</html>
register.php
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = htmlspecialchars($_POST['name']);
$email = htmlspecialchars($_POST['email']);
$phone = htmlspecialchars($_POST['phone']);
$message = htmlspecialchars($_POST['message']);
// 处理注册信息,如存入数据库或发送邮件
// 此处为简化,仅显示提交的信息
echo "<h1>注册成功!</h1>";
echo "<p>公司名称: $name</p>";
echo "<p>电子邮箱: $email</p>";
echo "<p>联系电话: $phone</p>";
echo "<p>备注: $message</p>";
}
?>
styles.css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
main {
padding: 20px;
}
section {
background-color: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form label {
display: block;
margin: 10px 0 5px;
}
form input, form textarea {
width: 100%;
padding: 10px;
margin: 5px 0 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
form button:hover {
background-color: #555;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
以上是一个简单的企业网站模板,用户可以通过填写表单提交注册信息。此模板包含HTML、CSS和PHP代码,你可以根据具体需求进行调整和扩展。
发布者:luotuoemo,转转请注明出处:https://www.jintuiyun.com/192821.html