-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (46 loc) · 2.61 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php require_once 'config.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="./vendor/twbs/bootstrap/dist/css/bootstrap.min.css">
</head>
<?php require './views/nav.php'; ?>
<div class="jumbotron">
<h1 class="display-4">你好!</h1>
<p class="lead">欢迎来到十八桥社区的论坛入站测试系统。你只需要让测试总分数达到 <?php echo htmlspecialchars(SCORE_THRESHOLD); ?> 分及以上,就可以获得邀请码用于注册账号。</p>
<hr class="my-4">
<p>请先阅读<a href="https://www.bridge18.us.kg/p/3-code-of-user-conduct">用户行为准则</a>,确认完全理解其内容后再开始测试。</p>
<?php
if (CLOSED) {
echo '<button type="button" class="btn btn-lg btn-primary" disabled>测试通道已关闭</button>';
} else {
echo '<a class="btn btn-primary btn-lg" href="info.php" role="button">立即测试</a>';
}
?>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">十八桥社区的新变化</h5>
<p class="card-text">2025 年 1 月 17 日,我们正式与 Favocas 组织合并,并宣布社区论坛于农历除夕开站。作为一个多元的泛兴趣领域社区,我们将更加努力,用开源精神重塑中文互联网社群的未来。</p>
<a href="https://dvd.chat/notes/a342kiikrkb9gavx" class="btn btn-primary">了解详情</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">帮助我们不断改进</h5>
<p class="card-text">如果你对系统、测试试题或计分标准有任何意见和建议,欢迎通过管理邮箱或源代码仓库的 Issues、PRs 告诉我们。</p>
<a href="mailto:[email protected]" class="btn btn-primary">去发信</a>
</div>
</div>
</div>
</div>
</div>
<?php require './views/footer.php'; ?>