-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-agreement.php
42 lines (41 loc) · 2.01 KB
/
web-agreement.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
<?php
setcookie("credential", "", time() - 3600, "/");
include("common.php");
?>
<html>
<head>
<title>Share Service</title>
<?php include("web-meta.php") ?>
</head>
<body class="login">
<div class="login-header"><a href="index.php">Cancel</a> </div>
<table width="100%" height="95%" border="0" id="tableLayout">
<tr>
<td width="100%" height="100%" border="0" id="tdLayout" align="center">
<table width="800" height="400" border="1" class="tableBorder">
<tr>
<td>
<table width="100%" height="100%" bgcolor="white" border="0" class="tableOption">
<tr>
<td colspan="3" align="center" style="padding-left: 22px; padding-right: 22px;">
<p><img src="images/share-new.png" style="height: 64px; width: 64px; margin-top:8px; vertical-align:middle;" id="imgIcon"/>
<b>Create your own Share Space</b></p>
This Sharing Service is free to use, and free to host. If you want to host it yourself, visit the <a href="https://github.com/codepoet80/sharing-service">GitHub repo</a> for more information. If you want to use this hosted version, there are a few things you need to agree to...
<div style="width: 80%; margin: 20px; text-align:left">
<small >
<?php include("tandc.php"); ?>
</small>
</div>
<a href="web-new-user.php?agreed">I Agree</a> <a href="index.php">Disagree</a><br/>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>