fixed mobile uploading and some other shit I cant remember rn

This commit is contained in:
w0bm
2020-10-28 12:38:54 +00:00
parent 3e135d2dc4
commit 54d3d02ccd
12 changed files with 154 additions and 29 deletions

View File

@@ -1,7 +1,60 @@
@extends('layout')
@section('content')
@include('partials.flash')
user limit reached 6969
<div class="page-header">
<h5>Register your w0bm.com Account</h5>
<p style="color:red;">Note: I do not reset passwords, make sure to pick a strong password which you can remember, write down/save to your keepass to not lose access, otherwise you would need to create a new account!</p>
</div>
<div class="register">
<form class="form-horizontal" method="post" action="{{action('UserController@store')}}">
{!! csrf_field() !!}
<div class="form-group">
<div class="">
{!! Form::text('username', null, ['class' => 'form-control', 'placeholder' => 'Username']) !!}
</div>
</div>
<div class="form-group">
<div class="">
{!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => 'Email | Must be valid! Confirmation will be sent out']) !!}
</div>
</div>
<div class="form-group">
<div class="">
{!! Form::email('email_confirmation', null, ['class' => 'form-control', 'placeholder' => 'Email Confirmation']) !!}
</div>
</div>
<div class="form-group">
<div class="">
{!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Password']) !!}
</div>
</div>
<div class="form-group">
<div class="">
{!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'Password Confirmation']) !!}
</div>
</div>
<div class="form-group">
{!!captcha_img('mini')!!} <input class="form-control" type="text" name="captcha" placeholder="Verify Captcha">
</div>
<div class="form-group terms">
<div style="text-align: center;">
<p><input type="checkbox" required name="terms"> I am at least 18 years or older and I have read and understand the <a href="/rules">Rules</a></p>
</div>
<div class="">
<button type="submit" class="btn btn-primary">Register</button>
</div>
</div>
</form>
</div>
<!-- <div class="form-group" style="
text-align: center;
background: rgba(0, 0, 0, 0.75);
margin-left: 5px;
margin-right: 5px;
">
<p>By clicking on "Register" you accept our <a href="/rules">Rules</a></p>
<p>Note: we do NOT reset passwords for now, make sure to save your password correctly</p>
</div>
-->
@endsection

View File

@@ -1,8 +1,7 @@
@extends('profilelayout')
@section('content')
<div class="page-header">
<h3 id="index">Index</h3>
<h3 id="index">Index <small>{{ count($videos) }} results</small></h3>
<form method="get">
<button type="submit" class="suchbutton"><i style="color:white;" class="fa fa-search"></i></button>
{!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search w0bm.com']) !!}

View File

@@ -6,7 +6,7 @@
<div class="box">
<h5>What do we log?</h5>
<p>We log any request made to our website, this includes the following information:</p>
<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>
@@ -16,11 +16,15 @@
<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)</p>
<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

View File

@@ -23,7 +23,6 @@
<link rel="stylesheet" href="/css/video-js.min.css">
<link rel="stylesheet" href="/css/simplebar.css" />
<link rel="stylesheet" href="/css/vjsnew.css?v=1.1.1">
<link rel="stylesheet" type="text/css" href="/css/perfect-scrollbar.css">
<link rel="alternate stylesheet" href="/css/chilledblue.css?v={{ filemtime("css/chilledblue.css") }}" title="Chilledblue">
<link rel="alternate stylesheet" href="/css/xayd.css?v={{ filemtime("css/xayd.css") }}" title="Xayd">
<link rel="alternate stylesheet" href="/css/glitch.css?v={{ filemtime("css/glitch.css") }}" title="Glitch">

View File

@@ -4,7 +4,7 @@
<h3>Stats</h3>
</div>
<div class="box">
<p class="user_count">Total amount of registered users: <amount>{{$user_count}}</amount></p>
<p class="user_count">Total amount of registered users: <amount>{{$user_count}}</amount> / 3000</p>
<p class="upload_count">Total amount of uploads: <amount>{{$upload_count}}</amount></p>
<p class="comment_count">Total amount of comments: <amount>{{$comment_count}}</amount></p>
<p class="latest-video">Latest video <a href="/{{$latest_video}}">/{{$latest_video}}</a></p>

View File

@@ -144,7 +144,7 @@
<div class="centered">
<div class="modal-content col-md-5">
<div class="modal-header">
<h4 class="modal-title" id="filterModalTitle">Login</h4> <span>to watch this webbum</span>
<h4 class="modal-title" id="filterModalTitle">Login</h4>
</div>
@include('partials.flash')
<div class="login_wrapper">
@@ -192,7 +192,7 @@
</div>
</div>
<div class="modal-footer">
<a href="/contact">Contact</a> | <a href="/irc">IRC</a>
<a href="/privacy">Privacy</a> | <a href="/contact">Contact</a> | <a href="/irc">IRC</a>
</div>
</div>
<div hidden class="testthumbnailslol">