feat(developer): 重构登录和注册页面样式并添加审核标准文档
- 使用 Bootstrap 重构登录和注册页面样式 - 在注册页面添加必须同意审核标准的复选框 - 新增 APP 审核标准文档
This commit is contained in:
41
docs/app_review_standards.php
Normal file
41
docs/app_review_standards.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* APP 审核标准文档
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>APP 审核标准</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-5">
|
||||
<h1 class="mb-4">APP 审核标准</h1>
|
||||
<section class="mb-5">
|
||||
<h2>内容审核</h2>
|
||||
<ul>
|
||||
<li>无违法、违规内容</li>
|
||||
<li>无侵犯知识产权内容</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="mb-5">
|
||||
<h2>功能审核</h2>
|
||||
<ul>
|
||||
<li>功能完整,无明显缺陷</li>
|
||||
<li>与描述功能一致</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="mb-5">
|
||||
<h2>性能审核</h2>
|
||||
<ul>
|
||||
<li>启动速度快</li>
|
||||
<li>无明显卡顿</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user