forked from orvice/ss-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
69 lines (56 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
include_once 'lib/config.php';
include_once 'header.php';
?>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br><br>
<h1 class="header center orange-text"><?php echo $site_name; ?></h1>
<div class="row center">
<h5 class="header col s12 light">轻松科学上网 保护个人隐私</h5>
</div>
<div class="row center">
<a href="user/register.php" id="download-button" class="btn-large waves-effect waves-light orange">立即注册</a>
</div>
<br><br>
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">flash_on</i></h2>
<h5 class="center">Super Fast</h5>
<p class="light">
Bleeding edge techniques using Asynchronous I/O and Event-driven programming.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
<h5 class="center">Open Source</h5>
<p class="light">
Totally free and open source. A worldwide community devoted to deliver bug-free code and long-term support.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
<h5 class="center">Easy to work with</h5>
<p class="light">
Avaliable on multiple platforms, including PC, MAC, Mobile (Android and iOS) and Routers (OpenWRT).
</p>
</div>
</div>
</div>
</div>
<br><br>
<div class="section">
</div>
</div>
<?php include_once 'ana.php';
include_once 'footer.php';?>