Files
Gw0bm/resources/views/layout1/privacy.blade.php

31 lines
1.2 KiB
PHP

@extends('profilelayout')
@section('content')
<div class="page-header">
<h3>Privacy</h3>
</div>
<div class="box">
<h5>What do we log?</h5>
<p>We log any request made to our website using the webserver access log, this includes the following information:</p>
<ul>
<li>Unique visitors per day</li>
<li>Requested file urls</li>
<li>Visitor hostnames and IPs</li>
<li>Visitors operating system</li>
<li>Visitors browser</li>
<li>Referrer URLs</li>
<li>Referring Sites</li>
</ul>
<p>These logs are being checked out occasionally by myself to see whats happening on good old w0bm</p>
<h5>3<sup>rd</sup> party links</h5>
<p>There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.</p>
<p>If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC or Discord</p>
<h5>Cookies</h5>
<p>Yes, we use cookies if you don't like that don't come to our site! (or don't accept them in the first place) You can see the details of the cookies in your browser.</p>
</div>
@if(auth()->check())
@include('footer')
@else
@endif
@endsection