-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtos.tpl
99 lines (81 loc) · 3.42 KB
/
tos.tpl
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE HTML>
<html>
<head>
<title>{$config["appName"]}</title>
<meta name="keywords" content="{$config["appName"]}"/>
<meta name="description" content="{$config["appName"]}"/>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico"/>
<link rel="bookmark" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="/assets/css/main.css"/>
<link href="/bootstrap" type="text/html" rel="stylesheet">
<noscript><link rel="stylesheet" href="/assets/css/noscript.css" /></noscript>
</head>
<body>
<div id="wrapper">
<!--首页开始-->
<div class="content">
<div class="inner">
<h1>Terms of Service</h1>
</div>
</div>
<p>{$config["appName"]}</p>
<div class="table-wrapper">
<table>
<tbody>
<tr align="center">
<td>Privacy security</td>
</tr>
<tr>
<td>Mailbox is the only voucher for users. Please provide real mailbox and keep it properly by yourself</td>
</tr>
<tr>
<td>The site uses one-way HASH encryption to store user passwords, but it does not guarantee absolute security of information</td>
</tr>
</tbody>
</table>
</div>
</br>
<div class="table-wrapper">
<table>
<tbody>
<tr align="center">
<td>Terms of use</td>
</tr>
<tr>
<td>Users are forbidden to use this website service to carry out any illegal and malicious activities</td>
</tr>
<tr>
<td>The use of the node should follow the relevant laws of the country to which the node belongs and the laws of China</td>
</tr>
<tr>
<td>Any user who violates the terms of use will delete the account and recycle the service</td>
</tr>
</tbody>
</table>
</div>
<nav>
<ul>
<a href="javascript:history.back();" class="button">Back</a>
</ul>
</nav>
<!--首页结束-->
<div id="main">
<!--全部标签结束-->
</div>
<!-- 版权底部 -->
<footer id="footer">
<p class="copyright">©{$config["appStartTime"]}-{date("Y")} {$config["appName"]}</p>
</footer>
<!-- 版权结束 -->
</div>
<!-- BG -->
<div id="bg"></div>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/gh/ajlkn/[email protected]/dist/skel.min.js"></script>
<script src="/assets/js/util.js"></script>
<script src="/assets/js/main.js"></script>
</body>
</html>