-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
175 lines (158 loc) · 4.19 KB
/
index.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="auth.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IC hat - By Geoloup team</title>
<link rel="shortcut icon" href="img/ic-hat.png">
<link rel="manifest" href="manifest.json" />
<link href="style.css" rel="stylesheet">
<style>
@media only screen and (min-width: 501px) {
.mm {
display: none;
position: fixed;
z-index: 1;
left: 0px;
bottom: 0px;
width: 100%;
height: 100%;
overflow: none;
background-color: #fefefe;
padding: 15px;
border: 1px solid #888;
}
.cls {
margin-left: 44vw;
width: 6vw;
color: #108a00;
border: 1px solid transparent;
border-radius: 5px;
position: fixed;
font-size: 20px;
font-weight: bold;
bottom: 8px;
text-align: center;
}
.cls:hover,
.cls:focus {
color: #108a00;
background-color: rgba(0, 159, 0, 0.20);
text-decoration: none;
cursor: pointer;
}
.mm p {
padding-right: 30px;
}
}
@media only screen and (max-width: 500px) {
.mm {
display: none;
position: fixed;
z-index: 0;
left: 2.5vw;
top: 2.5vh;
bottom: 2.5vh;
right: 2.5vh;
width: 87vw;
height: 88.5vh;
overflow: none;
background-color: #fefefe;
padding: 15px;
border: 1px solid #888;
}
.cls {
margin-left: 35vw;
width: 20vw;
color: #108a00;
border: 1px solid transparent;
border-radius: 5px;
position: fixed;
font-size: 24px;
font-weight: bold;
bottom: 25vh;
text-align: center;
padding-right: 1vw;
padding-left: 1vw;
transition: 0.25s;
}
.cls:hover,
.cls:focus {
color: #108a00;
background-color: rgba(0, 159, 0, 0.20);
text-decoration: none;
cursor: pointer;
}
.mm h2 {
text-align: center;
}
.mm p {
padding-right: 20px;
text-align: center;
}
}
@media only screen and (max-width: 500px) {
.mm {
display: none;
position: fixed;
z-index: 0;
left: 2.5vw;
top: 2.5vh;
bottom: 2.5vh;
right: 2.5vh;
width: 87vw;
height: 88.5vh;
overflow: none;
background-color: #fefefe;
padding: 15px;
border: 1px solid #888;
}
.cls {
margin-left: 35vw;
width: 20vw;
color: #108a00;
border: 1px solid transparent;
border-radius: 5px;
position: fixed;
font-size: 24px;
font-weight: bold;
bottom: 25vh;
text-align: center;
padding-right: 1vw;
padding-left: 1vw;
transition: 0.25s;
}
.cls:hover,
.cls:focus {
color: #108a00;
background-color: rgba(0, 159, 0, 0.20);
text-decoration: none;
cursor: pointer;
}
.mm h2 {
text-align: center;
}
.mm p {
padding-right: 20px;
text-align: center;
}
}
</style>
</head>
<body style="height: 100vh;background-size: cover;">
<div id="mm" class="mm">
<h2>Terms of service</h2>
<p>Welcome to Ic-hat! These Terms of Service govern your use and outline the rights and responsibilities between you
and us. By accessing or using the Application, you agree to be bound by these Terms. Please take note that the
messages are filtred by an AI or a public API.
IMPORTANT! Geoloup do not collect data. Ads are not a thing for us BUT please note that this is only for us not the other service we use like google and other provider.
</p>
<span class="cls" onclick="acpt()">Accept</span>
</div>
<iframe class="not-connected-iframe" id="not-connected-iframe" src="home.html"></iframe>
<script src="login-register.js"></script>
<script src="termofservice.js"></script>
</body>
</html>