-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.php
47 lines (39 loc) · 1.16 KB
/
terms.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
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>Aurora Chat - Signup</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
.container {
background-image: url('background.png');
background-size: 100% 100%; /* Adjusts the background image to cover the entire div */
background-position: center; /* Centers the background image */
background-repeat: no-repeat; /* Prevents the background image from repeating */
height: 500px; /* Makes the div take up the full viewport height */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 20px auto;
color: white;
}
.container a {
color: blue;
}
.container input[type=text] {
background-color: #fff;
}
.container input[type=password] {
background-color: #fff;
}
</style>
</head>
<body>
<div class="container">
<h2>Terms of Service + Privacy Policy</h2>
<p>Aurora Chat does <b>not</b> have any analitics/tracking mechanisms. The <b>Google Fonts</b> included may or may not track you (<a href="https://developers.google.com/fonts/faq/privacy">Learn More about that here</a>)</p>
</div>
</body>
</html>