-
Notifications
You must be signed in to change notification settings - Fork 0
/
tos.php
117 lines (97 loc) · 4.63 KB
/
tos.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Oakland Games - TOS</title>
<?php include_once('inc/components/head.php'); ?>
</head>
<body class="OaklandGames">
<div class="OaklandGames-header">
<header>
<div class="banner" style="text-align: center;">
<div class="container" style="padding-bottom:20px; padding-top:15px">
<img src="assets/img/logo/logo.svg"/>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-dark bg-ig">
<div class="container">
<a class="navbar-brand" href="/"><img src="assets/img/logo/altlogo.svg" width="48px" height="48px"/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample07" aria-controls="navbarsExample07" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExample07">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Games
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="game1.php">Space Invaders</a>
<a class="dropdown-item" href="game2.php">Donkey Kong</a>
<a class="dropdown-item" href="game3.php">Pacman</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="games.php">Games Page</a>
</div>
</li>
</ul>
<ul class="nav justify-content-end">
<button type="button" class="btn btn-dark"> <a href="contact.php"style="text-decoration: none; color: white">Contact</a></button
</ul>
</div>
</div>
</nav>
</header>
</div>
<div class="OaklandGames-body">
<main class="Site-content">
<br>
<div style="text-align: center; ;width:100%; color:white">
<h1>TERMS OF SERVICE</h1>
</div>
<h2>The Site</h2>
"The service", "The page", "This Assignment" refers to this final interactive websystems project platform on https://www.nightoff.org and may not be confused as something else.
<h2>Team</h2>
"Us", "We", "Our", "The group" all refers to Daiyaan Ijaz, Alexis Freeman, and Renyah as a group, as a team. We are not responsible for any mistakes you may have made with our service.
<h2>Understand</h2>
By being on our website and server, you understand that you are accountable for your own mistakes. You understand that we have the authority to do what we want with your account, as it is our property and you're playing on it. You understand that if you do not represent the values that this community stands for then your account will be dealt with accordingly and as fairly as possible. You understand that since Imperfect Gamers operates and is hosted in the United States that the Electronic Signatures in Global and International Commerce Act (ESGICA) is in effect and failure to follow these rules will result in permanent removal from the community.
<h2>Acceptance</h2>
You hereby agree that by accepting this TOS, you know that your contract with ImperfectGamers.org also correlates to the server and any service that is owned by us.
</main>
<nav class="OaklandGames-nav"></nav>
<aside class="OaklandGames-news"></aside>
</div>
<script>
var i = 0;
function move() {
if (i == 0) {
i = 1;
var elem = document.getElementById("totalBar");
var emoji = document.getElementById("appearA");
var width = 10;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
i = 0;
} else {
width++;
elem.style.width = width + "%";
elem.style['background-image'] = "linear-gradient(to right, #4CAF50 , #2196F3, #f44336)";
elem.innerHTML = width + "%";
emoji.innerHTML = "<img src='https://www.emoji.co.uk/files/apple-emojis/objects-ios/698-party-popper.png' style='width:100%; max-width: 64px; height: auto;'></img>"
}
}
}
}
</script>
<!-- Footer -->
<?php include_once('inc/components/footer.php'); ?>
<!-- ./Footer -->
</body>
</html>