updated some stuff
This commit is contained in:
parent
3b4247340b
commit
cfa644fe85
|
|
@ -100,4 +100,9 @@ class PageController extends Controller
|
|||
{
|
||||
return view('misc.blog');
|
||||
}
|
||||
|
||||
public function notapproved()
|
||||
{
|
||||
return view('notapproved');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@
|
|||
<p>• Don't make accounts named "MORBLOX" or "ARCHBLOX". (Name Change)</p>
|
||||
<p>• Do not ban evade. (Termination)</p>
|
||||
<p>• Don't spam. (Warning, Ban for few days)</p>
|
||||
<p>• Getting banned from the discord server will result in a ban on the site as well.</p>
|
||||
<br>
|
||||
<h2>Asset Moderation</h2>
|
||||
<p>If we believe that any of your assets is breaking the rules, we will remove or change that Asset as required, and then take action onto your ARCHBLOX account.</p>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - We're Still Morbin'</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="ARCHBLOX" property="og:title" />
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
<meta content="https://archblox.com" property="og:url" />
|
||||
<meta content="https://archblox.com/img/MORBLOXlogo.png" property="og:image" />
|
||||
<meta content="#4b4b4b" data-react-helmet="true" name="theme-color" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<link rel="apple-touch-icon" href="{{ asset('img/MORBLOX.png') }}" />
|
||||
<link rel="apple-touch-startup-image" href="{{ asset('img/MORBLOXsplash.png') }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<br>
|
||||
<div id="logo_signup">
|
||||
<a href="{{ route('index') }}"><img alt="ARCHBLOX Logo" src="{{ asset('img/ARCHBLOXarched.png') }}"
|
||||
width="200" height="40" /></a>
|
||||
<p id="morbin">We're Still Morbin'</p>
|
||||
</div>
|
||||
<div class="content_signup">
|
||||
<h1>Ban Type Goes here (Warning, [day number] Day Ban, Account Terminated)</h1>
|
||||
<p>Timestamp</p>
|
||||
<p><strong>Moderator Note:</strong> bla bla bla this is some text xd!.</p>
|
||||
<p>If you would like to appeal, please join our discord server.</p>
|
||||
<button class="greybutton">Re-Activate my account</button>
|
||||
<button class="greybutton">Log out</button>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo or any other company. We're still Morbin'!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -28,6 +28,7 @@ Route::get('/download', [App\Http\Controllers\PageController::class, 'download']
|
|||
Route::get('/styleguide', [App\Http\Controllers\PageController::class, 'styleguide'])->name('styleguide');
|
||||
Route::get('/blog', [App\Http\Controllers\PageController::class, 'blog'])->name('blog');
|
||||
Route::get('/incomplete', [App\Http\Controllers\PageController::class, 'incomplete'])->name('incomplete');
|
||||
Route::get('/not-approved', [App\Http\Controllers\PageController::class, 'notapproved'])->name('notapproved');
|
||||
|
||||
// Must be logged in
|
||||
Route::middleware(['auth'])->group(function () {
|
||||
|
|
|
|||
Loading…
Reference in New Issue