server version, minor css fixes and other visual upgrades mostly to standard layout -> glitch css

This commit is contained in:
noxy
2020-01-02 11:51:29 +00:00
parent 55be581dac
commit 1399b95004
40 changed files with 1086 additions and 85 deletions

View File

@@ -38,7 +38,7 @@
</div>
<div class="form-group terms">
<div style="text-align: center;">
<p><input type="checkbox" checked required name="terms"> I am at least 18 years or older and I have read and understand the <a href="/rules">Rules</a></p>
<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>

View File

@@ -4,12 +4,16 @@
<h3>IRC</h3>
</div>
<div class="box">
<img src="/irccat.gif" alt="irc cat" style="float: right; width: 25%; height: 25%;">
<h5>IRC</h5>
<div class="irc-content">
<div class="webchat">
<iframe src="https://webirc.n0xy.net?nick={{Auth::user()->username}}&join=%23w0bm&username={{Auth::user()->username}}"></iframe>
</div>
<div class="irc-info">
<h5>IRC</h5>
<h6>irc.n0xy.net +6697 (ssl only) #w0bm</h6>
<p>Don't have a desktop client? Why not join our Network via webirc? <a href="https://webirc.n0xy.net/?join=%23w0bm" target="about_blank">>>webirc.n0xy.net</a></p>
<p>More information: <a href="https://n0xy.net">n0xy.net</a></p>
</div>
</div>
@endsection

View File

@@ -70,7 +70,7 @@
<div class="wrapper">
@yield('aside')
<div style="width: auto; overflow: hidden; position: relative;">
<div class="LooLOut" style="width: auto; overflow: hidden; position: relative;">
<noscript><div class="no-js-mode" style="position: fixed;bottom: 0;right: 0;">nojs</div></noscript>
<div class=" container">
@yield('content')

View File

@@ -13,6 +13,7 @@
{!! csrf_field() !!}
<input type="text" name="identifier" placeholder="Username" class="form-control usernamelogin"><br>
<input type="password" name="password" placeholder="Password" class="form-control passwordlogin"><br>
{{-- {!!captcha_img('login')!!} <input class="form-control" type="text" name="captcha" placeholder="Verify Captcha"> --}}
<button type="submit" class="btn btn-primary">Login</button> <input id="rememberme" checked type="checkbox" name="remember"> <span id="rember">Remember me?</span>
</form>
</div>

View File

@@ -1,5 +1,5 @@
<div class="page-header">
<h3 class="{{ $user->username }}">{!! rtrim(e($user->username) . ' ' . $user->activeIcon()) !!} @if($user->disabled && isset($user->banend) && (Carbon\Carbon::now() <= $user->banend || 1 >= $user->banend->timestamp))<span style="color: grey; font-size: 15px;">(@if(Carbon\Carbon::now() <= $user->banend)Ban expires in <time class="timeago" data-toggle="tooltip" title="{{ $user->banend }}+0000" datetime="{{ $user->banend }}+0000"></time>@else permanently banned @endif)</span>@endif</h3>
<h3 class="{{ $user->username }}">{!! rtrim(e($user->username) . ' ' . $user->activeIcon()) !!} <small>ID: {{ $user->id }}</small> @if($user->disabled && isset($user->banend) && (Carbon\Carbon::now() <= $user->banend || 1 >= $user->banend->timestamp)) <span style="color: grey; font-size: 15px;">(@if(Carbon\Carbon::now() <= $user->banend)Ban expires in <time class="timeago" data-toggle="tooltip" title="{{ $user->banend }}+0000" datetime="{{ $user->banend }}+0000"></time>@else permanently banned @endif)</span>@endif</h3>
<div class="admin-settings">
@if(auth()->check() && auth()->user()->can('edit_user'))<span id="pannade"><a href="#" data-toggle="modal" data-target="#banmenumodal"><i style="color:red;" class=""></i>[ban user]</a></span>
@endif

View File

@@ -13,12 +13,10 @@
</ul>
<input type="checkbox" id="tag-add-toggle">
<div id="tag-add">
<div class="input-group" style="margin-top: 4px;">
<div class="input-group tag-input-open" style="margin-top: 4px;">
{{--<select multiple name="tags[]" data-role="tagsinput" class="form-control"></select>--}}
<input id="tags" type="text" class="form-control" placeholder="Input tags…" name="tags" data-role="tagsinput">
<span class="input-group-btn">
<button href="/{{$video->id}}/tag" id="submittags" type="submit" class="form-control btn-primary">Submit</button>
</span>
<input id="tags" type="text" class="" placeholder="Add new tag" name="tags" data-role="tagsinput">
<button href="/{{$video->id}}/tag" id="submittags" type="submit" class="">Submit</button>
</div>
</div>
@else
@@ -42,5 +40,6 @@
No tags yet ...
@endif
</div>
<br>
</div>
</div>

View File

@@ -1,9 +1,9 @@
@extends('profilelayout')
@section('content')
@include('partials.profileheader')
<div class="profilheader">
<a href="/{{$user->baseurl()}}/">View {{ $title }}</a>
</div>
<fieldset>
<legend><a href="/{{$user->baseurl()}}/">View {{ $title }}</a></legend>
<table class="table table-hover table-condensed">
<thead>
<tr>
@@ -32,4 +32,5 @@
</tbody>
</table>
{!! $videos->render() !!}
</fieldset>
@endsection