forked from orvice/ss-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·45 lines (40 loc) · 1.7 KB
/
footer.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
<footer class="page-footer orange">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">关于</h5>
<p class="grey-text text-lighten-4">本站提供某种帐号用于科学上网.</p>
</div>
<div class="col l3 s12">
<h5 class="white-text">用户</h5>
<ul>
<li><a class="white-text" href="user">用户中心</a></li>
<li><a class="white-text" href="user/login.php">登录</a></li>
<li><a class="white-text" href="user/register.php">注册</a></li>
</ul>
</div>
<div class="col l3 s12">
<h5 class="white-text">页面</h5>
<ul>
<li><a class="white-text" href="code.php">邀请码</a></li>
<li><a class="white-text" href="user/tos.php">TOS</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© <?php echo $site_name." ".date('Y'); ?> Powered by <a class="orange-text text-lighten-3" href="https://github.com/orvice/ss-panel">ss-panel</a> <?php echo $version; ?>
Processed in <?php
$Runtime->Stop();
echo $Runtime->SpendTime()."ms";
?> Theme by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="asset/js/jQuery.min.js"></script>
<script src="asset/materialize/js/materialize.min.js"></script>
<script src="asset/materialize/js/init.js"></script>
</body>
</html>