蛋糕商城注册页面html模板
时间: 2024-09-25 18:07:00 浏览: 70
蛋糕商城注册页面的HTML模板通常包含以下几个部分:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>蛋糕商城 - 注册</title>
<link rel="stylesheet" href="styles.css"> <!-- 引入样式文件 -->
</head>
<body>
<header>
<h1>蛋糕商城</h1>
<nav>
<a href="#">主页</a> | <a href="#">登录</a> | <a href="#" class="active">注册</a>
</nav>
</header>
<main id="registration-form">
<h2>新用户注册</h2>
<form action="/register" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required><br>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password" pattern=".{6,}" required>
<small>(至少6位)</small><br>
<label for="confirm-password">确认密码:</label>
<input type="password" id="confirm-password" name="confirm-password" required><br>
<div class="checkbox-container">
<input type="checkbox" id="accept-tos" name="accept_tos" required>
<label for="accept-tos">我接受《服务条款》</label>
</div>
<button type="submit">立即注册</button>
</form>
</main>
<footer>
<p>© 2023 蛋糕商城 - 保留所有权利</p>
</footer>
</body>
</html>
```
阅读全文