Removed animated background on "logged in" pages
This commit is contained in:
parent
fff484918f
commit
4e22439ad4
|
|
@ -348,20 +348,24 @@
|
|||
}
|
||||
|
||||
html {
|
||||
animation-name: animatedbackground;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
background: url('../img/animated.png');
|
||||
background-position: center bottom;
|
||||
background-repeat: repeat-x;
|
||||
background-attachment: fixed;
|
||||
margin: 0px;
|
||||
font-family: "Helvetica";
|
||||
src: url('Helvetica.ttf') format('truetype'), ;
|
||||
font-style: normal;
|
||||
background-color: rgb(49, 107, 223);
|
||||
height: 100%;
|
||||
color: white;
|
||||
background-color: #cccccc;
|
||||
}
|
||||
|
||||
.loggedout {
|
||||
background: url('../img/animated.png');
|
||||
background-color: rgb(49, 107, 223);
|
||||
background-position: center bottom;
|
||||
background-repeat: repeat-x;
|
||||
background-attachment: fixed;
|
||||
animation-name: animatedbackground;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#alert {
|
||||
background: linear-gradient(#ef3232 10%, #6a0f0f 100%);
|
||||
}
|
||||
|
|
@ -21,7 +20,7 @@
|
|||
background: linear-gradient(#3690df 10%, #0d1085 100%);
|
||||
}
|
||||
|
||||
.onlinestatus_website {
|
||||
.onlinestatus_website {
|
||||
color: #2260DD;
|
||||
}
|
||||
|
||||
|
|
@ -42,16 +41,21 @@
|
|||
.FriendsContainerBox {
|
||||
border: 1px solid #787373;
|
||||
}
|
||||
|
||||
.smallnav {
|
||||
color: rgb(255, 255, 255);
|
||||
background: linear-gradient(#303030 10%, #000000 100%);
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: rgb(1, 17, 48);
|
||||
background-color: rgb(31, 31, 31);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.loggedout {
|
||||
background-color: rgb(1, 17, 48);
|
||||
}
|
||||
|
||||
body {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
|
|
@ -120,7 +124,9 @@ a,
|
|||
background-color: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
textarea, select, input {
|
||||
textarea,
|
||||
select,
|
||||
input {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,76 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<title>Login - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Login - 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>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Login - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Login - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Welcome back!</h1>
|
||||
<p>Don't have an account? <a href="{{ route('register') }}">Click here</a> to sign up.</p>
|
||||
<br>
|
||||
<form method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
<h3>Username/E-Mail Address</h3>
|
||||
<input id="login" type="text" name="login" value="{{ old('login') }}" required autofocus>
|
||||
@if ($errors->has('name') || $errors->has('email'))
|
||||
<span style="color:red" role="alert">
|
||||
<strong>{{ $errors->first('name') ?: $errors->first('email') }}</strong>
|
||||
</span>
|
||||
@endif
|
||||
<h3>Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="current-password">
|
||||
@error('password')
|
||||
<span style="color:red" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
<br>
|
||||
<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>Welcome back!</h1>
|
||||
<p>Don't have an account? <a href="{{ route('register') }}">Click here</a> to sign up.</p>
|
||||
<br>
|
||||
<input style="width:5%;margin-bottom:15px;margin-top:15px" type="checkbox" name="remember" id="remember"
|
||||
{{ old('remember') ? 'checked' : '' }}>
|
||||
|
||||
<form method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
<h3>Username/E-Mail Address</h3>
|
||||
<input id="login" type="text" name="login" value="{{ old('login') }}" required autofocus>
|
||||
@if ($errors->has('name') || $errors->has('email'))
|
||||
<span style="color:red" role="alert">
|
||||
<strong>{{ $errors->first('name') ?: $errors->first('email') }}</strong>
|
||||
</span>
|
||||
@endif
|
||||
<h3>Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="current-password">
|
||||
@error('password')
|
||||
<span style="color:red" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
<br>
|
||||
<input style="width:5%;margin-bottom:15px;margin-top:15px" type="checkbox" name="remember" id="remember"
|
||||
{{ old('remember') ? 'checked' : '' }}>
|
||||
|
||||
<label class="form-check-label" for="remember">
|
||||
{{ __('Remember Me') }}
|
||||
</label>
|
||||
<button type="submit" class="greenbutton" onClick="this.form.submit();this.disabled=true">Log in!</button>
|
||||
@if (Route::has('password.request'))
|
||||
<br><br>
|
||||
<a class="btn btn-link" href="{{ route('password.request') }}"
|
||||
style="text-align:center;display:block">
|
||||
Forgot Your Password?
|
||||
</a>
|
||||
@endif
|
||||
</form>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a>
|
||||
</p>
|
||||
</div id="footer">
|
||||
</body>
|
||||
|
||||
</html>
|
||||
<label class="form-check-label" for="remember">
|
||||
{{ __('Remember Me') }}
|
||||
</label>
|
||||
<button type="submit" class="greenbutton" onClick="this.form.submit();this.disabled=true">Log in!</button>
|
||||
@if (Route::has('password.request'))
|
||||
<br><br>
|
||||
<a class="btn btn-link" href="{{ route('password.request') }}" style="text-align:center;display:block">
|
||||
Forgot Your Password?
|
||||
</a>
|
||||
@endif
|
||||
</form>
|
||||
@endsection
|
||||
|
|
@ -1,56 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Reset Password - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Reset Password - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Reset Password</h1>
|
||||
<p>Check your junk folder if you do not receive the email.</p><br>
|
||||
<form method="POST" action="{{ route('password.email') }}">
|
||||
@csrf
|
||||
<h3>Email Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ old('email') }}" required autocomplete="email"
|
||||
placeholder="Email address..." autofocus>
|
||||
@error('email')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
<br><br>
|
||||
|
||||
<head>
|
||||
<title>Reset Password - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Reset Password - 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>Reset Password</h1>
|
||||
<p>Check your junk folder if you do not receive the email.</p><br>
|
||||
<form method="POST" action="{{ route('password.email') }}">
|
||||
@csrf
|
||||
<h3>Email Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ old('email') }}" required
|
||||
autocomplete="email" placeholder="Email address..." autofocus>
|
||||
@error('email')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
<br><br>
|
||||
|
||||
<button class="greybutton" type="submit" onClick="this.form.submit();this.disabled=true">
|
||||
Send Password Reset Link
|
||||
</button>
|
||||
</form>
|
||||
</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>
|
||||
<button class="greybutton" type="submit" onClick="this.form.submit();this.disabled=true">
|
||||
Send Password Reset Link
|
||||
</button>
|
||||
</form>
|
||||
@endsection
|
||||
|
|
@ -1,73 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Reset Password - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Reset Password - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Reset Password</h1>
|
||||
<p>Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.</p><br>
|
||||
<form method="POST" action="{{ route('password.update') }}">
|
||||
@csrf
|
||||
|
||||
<head>
|
||||
<title>Reset Password - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Reset Password - 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>
|
||||
<input type="hidden" name="token" value="{{ $token }}">
|
||||
|
||||
<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>Reset Password</h1>
|
||||
<p>Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.</p><br>
|
||||
<form method="POST" action="{{ route('password.update') }}">
|
||||
@csrf
|
||||
<h3>Email Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email"
|
||||
autofocus>
|
||||
|
||||
<input type="hidden" name="token" value="{{ $token }}">
|
||||
@error('email')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
|
||||
<h3>Email Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email"
|
||||
autofocus>
|
||||
<h3>New Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="new-password"
|
||||
placeholder="Enter your new password">
|
||||
|
||||
@error('email')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
@error('password')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
|
||||
<h3>New Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="new-password"
|
||||
placeholder="Enter your new password">
|
||||
<h3>Confirm New Password</h3>
|
||||
<input id="password-confirm" type="password" name="password_confirmation" required autocomplete="new-password"
|
||||
placeholder="Confirm your new password">
|
||||
<br><br>
|
||||
|
||||
@error('password')
|
||||
<span class="warningtext" role="alert">
|
||||
<br><strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
|
||||
<h3>Confirm New Password</h3>
|
||||
<input id="password-confirm" type="password" name="password_confirmation" required autocomplete="new-password"
|
||||
placeholder="Confirm your new password">
|
||||
<br><br>
|
||||
|
||||
<button type="submit" onClick="this.form.submit();this.disabled=true">
|
||||
Reset Password
|
||||
</button>
|
||||
</form>
|
||||
</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>
|
||||
<button type="submit" onClick="this.form.submit();this.disabled=true">
|
||||
Reset Password
|
||||
</button>
|
||||
</form>
|
||||
@endsection
|
||||
|
|
@ -1,103 +1,76 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<title>Register - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Register - 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>
|
||||
<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>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Register - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Register - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Welcome to ARCHBLOX!</h1>
|
||||
<p>Have an account already? <a href="{{ route('login') }}">Click here</a> to log in.</p>
|
||||
<br>
|
||||
<p>Before entering anything, please read the <a href="{{ route('privacy') }}">Privacy Policy</a> and the <a
|
||||
href="{{ route('tos') }}">Terms of Service</a>.</p>
|
||||
<br>
|
||||
<form method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
<h3>Username</h3>
|
||||
<input id="name" type="text" placeholder="Enter a username!" name="name" value="{{ old('name') }}" required
|
||||
autocomplete="name" autofocus>
|
||||
<p>Usernames must be 3-20 characters, and must not break the rules.</p>
|
||||
@error('name')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
<div class="content_signup">
|
||||
<h1>Welcome to ARCHBLOX!</h1>
|
||||
<p>Have an account already? <a href="{{ route('login') }}">Click here</a> to log in.</p>
|
||||
<br>
|
||||
<p>Before entering anything, please read the <a href="{{ route('privacy') }}">Privacy Policy</a> and the <a
|
||||
href="{{ route('tos') }}">Terms of Service</a>.</p>
|
||||
<br>
|
||||
<form method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
<h3>Username</h3>
|
||||
<input id="name" type="text" placeholder="Enter a username!" name="name"
|
||||
value="{{ old('name') }}" required autocomplete="name" autofocus>
|
||||
<p>Usernames must be 3-20 characters, and must not break the rules.</p>
|
||||
@error('name')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>E-Mail Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ old('email') }}" required
|
||||
autocomplete="email">
|
||||
@error('email')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<h3>Confirm E-Mail Address</h3>
|
||||
<input id="email-confirm" type="email" name="email_confirmation" value="{{ old('email_confirmation') }}"
|
||||
required autocomplete="email">
|
||||
@error('email_confirmation')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Date of Birth</h3>
|
||||
<input id="dob" type="date" name="dob" value="{{ old('dob') }}" required>
|
||||
@error('dob')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="password">
|
||||
<p>Don't reuse passwords, and don't use a simple one!</p>
|
||||
<p>Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.</p>
|
||||
@error('password')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Invite Key</h3>
|
||||
<input id="key" type="text" name="key" placeholder="Invite Key" value="{{ old('key') }}"
|
||||
required>
|
||||
@error('key')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>Incorrect invite key.</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<p>An Invite Key is required to sign up. You can obtain one from a person that has played ARCHBLOX.</p>
|
||||
<p>Don't beg for keys.</p>
|
||||
<br>
|
||||
<button class="greenbutton" onClick="this.form.submit();this.disabled=true">Sign Up!</button>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>E-Mail Address</h3>
|
||||
<input id="email" type="email" name="email" value="{{ old('email') }}" required autocomplete="email">
|
||||
@error('email')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div id="footer">
|
||||
</body>
|
||||
@enderror
|
||||
<h3>Confirm E-Mail Address</h3>
|
||||
<input id="email-confirm" type="email" name="email_confirmation" value="{{ old('email_confirmation') }}" required
|
||||
autocomplete="email">
|
||||
@error('email_confirmation')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Date of Birth</h3>
|
||||
<input id="dob" type="date" name="dob" value="{{ old('dob') }}" required>
|
||||
@error('dob')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="password">
|
||||
<p>Don't reuse passwords, and don't use a simple one!</p>
|
||||
<p>Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.</p>
|
||||
@error('password')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<br>
|
||||
<h3>Invite Key</h3>
|
||||
<input id="key" type="text" name="key" placeholder="Invite Key" value="{{ old('key') }}" required>
|
||||
@error('key')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>Incorrect invite key.</strong>
|
||||
</div>
|
||||
@enderror
|
||||
<p>An Invite Key is required to sign up. You can obtain one from a person that has played ARCHBLOX.</p>
|
||||
<p>Don't beg for keys.</p>
|
||||
<br>
|
||||
<button class="greenbutton" onClick="this.form.submit();this.disabled=true">Sign Up!</button>
|
||||
|
||||
</html>
|
||||
@endsection
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<html lang="en-us" class="loggedout">
|
||||
<head>
|
||||
<title>Image Posted - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<html lang="en-us" class="loggedout">
|
||||
<head>
|
||||
<title>Video Recorded - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
|
|
|
|||
|
|
@ -1,54 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - 403</title>
|
||||
<meta content="ARCHBLOX - 403" 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="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<link rel="apple-touch-icon" href="MORBLOX.png"/>
|
||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
<script src="{{ asset('js/403.js') }}"></script>
|
||||
</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">
|
||||
<h2>403 Forbidden</h2>
|
||||
<p>OH SHIT WHAT HAVE YOU DONE GO BACK NOW BEFORE LUIGI KILLS US ALL!!!!!!</p>
|
||||
<p>Luigi: I AM GOING TO KILL EVERYONE IN <span id="timeElement">5</span></p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>403 - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="403 - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('extras')
|
||||
<script src="{{ asset('js/403.js') }}"></script>
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h2>403 Forbidden</h2>
|
||||
<p>OH SHIT WHAT HAVE YOU DONE GO BACK NOW BEFORE LUIGI KILLS US ALL!!!!!!</p>
|
||||
<p>Luigi: I AM GOING TO KILL EVERYONE IN <span id="timeElement">5</span></p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
@endsection
|
||||
|
|
@ -1,53 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - 404</title>
|
||||
<meta content="ARCHBLOX - 404" 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="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<link rel="apple-touch-icon" href="MORBLOX.png"/>
|
||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
</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">
|
||||
<h2>404 Page Not Found</h2>
|
||||
<p>Aw man, look at what you have done. You've made Luigi mad!</p>
|
||||
<p>Why don't you go back a page for us before Luigi destroys us all.</p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>404 - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="404 - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h2>404 Page Not Found</h2>
|
||||
<p>Aw man, look at what you have done. You've made Luigi mad!</p>
|
||||
<p>Why don't you go back a page for us before Luigi destroys us all.</p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
@endsection
|
||||
|
|
@ -1,54 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - 405</title>
|
||||
<meta content="ARCHBLOX - 405" 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="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<link rel="apple-touch-icon" href="MORBLOX.png"/>
|
||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
<script src="{{ asset('js/403.js') }}"></script>
|
||||
</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">
|
||||
<h2>405 Method Not Allowed</h2>
|
||||
<p>What have you done.</p>
|
||||
<p>Luigi: YOU CANNOT ESCAPE. YOU WILL BE DESTROYED IN <span id="timeElement">5</span></p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>405 - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="405 - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('extras')
|
||||
<script src="{{ asset('js/403.js') }}"></script>
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h2>405 Method Not Allowed</h2>
|
||||
<p>What have you done.</p>
|
||||
<p>Luigi: YOU CANNOT ESCAPE. YOU WILL BE DESTROYED IN <span id="timeElement">5</span></p>
|
||||
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
|
||||
@endsection
|
||||
|
|
@ -1,51 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - 429</title>
|
||||
<meta content="ARCHBLOX - 429" 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="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<link rel="apple-touch-icon" href="MORBLOX.png"/>
|
||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
</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">
|
||||
<h2>429 Too Many Requests</h2>
|
||||
<p>You've tried to do something too many times. Please try again in a few minutes.</p>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>429 - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="429 - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h2>429 Too Many Requests</h2>
|
||||
<p>You've tried to do something too many times. Please try again in a few minutes.</p>
|
||||
@endsection
|
||||
|
|
@ -1,51 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }} - 500</title>
|
||||
<meta content="ARCHBLOX - 500" 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="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<link rel="apple-touch-icon" href="MORBLOX.png"/>
|
||||
<link rel="apple-touch-startup-image" href="MORBLOXSplash.png"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
</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">
|
||||
<h2>500 Internal Server Error</h2>
|
||||
<p>Please go back and try again. If it still does not work, contact one of the developers.</p>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin
|
||||
time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>500 - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="500 - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h2>500 Internal Server Error</h2>
|
||||
<p>Please go back and try again. If it still does not work, contact one of the developers.</p>
|
||||
@endsection
|
||||
|
|
@ -1,50 +1,25 @@
|
|||
<!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>Welcome to ARCHBLOX!</h1>
|
||||
<p>ARCHBLOX is a Work-In-Progress revival.</p>
|
||||
<br>
|
||||
<a alt="Log In button" href="{{ route('login') }}">Log In</a>
|
||||
<a alt="Sign Up button" href="{{ route('register') }}">Sign Up</a>
|
||||
<br>
|
||||
<p id="ARCHBLOX" class="invisible">Want to check out the published site? <a href="https://archblox.com">Click
|
||||
here!</a></p>
|
||||
<p id="discord">Also, <a href="https://discord.gg/nudzQ7hkWY">Join our Discord!</a></p>
|
||||
<br>
|
||||
<br>
|
||||
<h3>User Count</h3>
|
||||
<p>There are <strong>{{ App\Models\User::count() }}</strong> users registered</p>
|
||||
</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>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>{{ env('APP_NAME') }} - We're Still Morbin!</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="{{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Welcome to ARCHBLOX!</h1>
|
||||
<p>ARCHBLOX is a Work-In-Progress revival.</p>
|
||||
<br>
|
||||
<a alt="Log In button" href="{{ route('login') }}">Log In</a>
|
||||
<a alt="Sign Up button" href="{{ route('register') }}">Sign Up</a>
|
||||
<br>
|
||||
<p id="ARCHBLOX" class="invisible">Want to check out the published site? <a href="https://archblox.com">Click
|
||||
here!</a></p>
|
||||
<p id="discord">Also, <a href="https://discord.gg/nudzQ7hkWY">Join our Discord!</a></p>
|
||||
<br>
|
||||
<br>
|
||||
<h3>User Count</h3>
|
||||
<p>There are <strong>{{ App\Models\User::count() }}</strong> users registered</p>
|
||||
@endsection
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us" class="loggedout">
|
||||
|
||||
<head>
|
||||
@yield('title')
|
||||
<meta charset="utf-8">
|
||||
@yield('titlediscord')
|
||||
@yield('descdiscord')
|
||||
<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') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
@yield('extras')
|
||||
</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">
|
||||
@yield('contentloggedout')
|
||||
</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>
|
||||
|
|
@ -1,64 +1,61 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>Privacy Policy - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Privacy Policy - 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="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>
|
||||
<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>Privacy Policy</h1>
|
||||
<p>ARCHBLOX is committed to providing a silly ROBLOX revival and this policy outlines our ongoing obligations to you in respect of how we manage your Personal Information.
|
||||
We have adopted the Australian Privacy Principles (APPs) contained in the Privacy Act 1988 (Cth) (the Privacy Act). The NPPs govern the way in which we collect, use, disclose, store, secure and dispose of your Personal Information.
|
||||
A copy of the Australian Privacy Principles may be obtained from the website of The Office of the Australian Information Commissioner at www.aoic.gov.au</p>
|
||||
<h2>Req. Legal Disclaimer</h2>
|
||||
<p>ARCHBLOX is not associated, partnered or owned with Roblox Corp in any way.</p>
|
||||
<h2>How we store your passwords</h2>
|
||||
<p>As with every other site that uses passwords, we need a way to secure them, so no bad actors can read them. We use bcrypt to store your passwords securely.</p>
|
||||
<h2>What is Personal Information and why do we collect it?</h2>
|
||||
<p>Personal Information is information that identifies an individual. The Personal Information we collect include your username, age and email address.
|
||||
We also store your Places, Decals, T-Shirts, Shirts, Pants, Audios, Settings, Friends and ARKOTs until you delete it yourself, or we moderate it (see our Terms of Service).
|
||||
This Personal Information is obtained from our website archblox.com. <a style="color: blue;" href="https://media.discordapp.net/attachments/987687460974788669/991175756602409041/unknown.png?width=1440&height=345">We do not store your IP Address.</a>
|
||||
We collect your Personal Information for the primary purpose of using the services. We may also use your Personal Information for secondary purposes closely related to the primary purpose, in circumstances where you would reasonably expect such use or disclosure.
|
||||
When we collect Personal Information, we will, where appropriate and where possible, explain to you why we are collecting the information and how we plan to use it.</p>
|
||||
<h2>What happens when your account gets terminated?</h2>
|
||||
<p>Within 3 months of being terminated, your account will be forever deleted. This includes all your stored data, and personal information. YOU CAN APPEAL YOUR TERMINATION.</p>
|
||||
<h2>What happens if your account is inactive for a long time?</h2>
|
||||
<p>After 1 year of inactivity, your account goes into a "disabled" state, where you can only change your Personal Information. You can either ask for it to be re-enabled or deleted. If it is inactive for another year after being disabled, it will be terminated, and then will lose all the stored data after the 3-month period of being terminated.</p>
|
||||
<h2>Disclosure of Personal Information</h2>
|
||||
<p>Your Personal Information will only be disclosed when required by law and when you request for it. (See Access/Deletion of your Personal Information for more information.)</p>
|
||||
<h2>Security of Personal Information</h2>
|
||||
<p>Your Personal Information is stored in a manner that reasonably protects it from misuse and loss and from unauthorized access, modification or disclosure.</p>
|
||||
<h2>Access/Deletion of your Personal Information</h2>
|
||||
<p>You may access, delete and update and/or correct the Personal Information we hold (that is yours). If you wish to access your Personal Information, please open the Settings/Build page, or contact us on our server.
|
||||
In order to protect your Personal Information, we may require identification from you before releasing the requested information.</p>
|
||||
<h2>Policy Updates</h2>
|
||||
<p>This Policy can change from time to time and is available on our website. You will be notified of this change.</p>
|
||||
<h2>Privacy Policy Complaints and Enquiries</h2>
|
||||
<p>If you have any queries or complaints about our Privacy Policy, please contact us on our Discord.</p>
|
||||
<br>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div id="footer">
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Privacy Policy - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Privacy Policy - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Privacy Policy</h1>
|
||||
<p>ARCHBLOX is committed to providing a silly ROBLOX revival and this policy outlines our ongoing obligations to you in
|
||||
respect of how we manage your Personal Information.
|
||||
We have adopted the Australian Privacy Principles (APPs) contained in the Privacy Act 1988 (Cth) (the Privacy Act).
|
||||
The NPPs govern the way in which we collect, use, disclose, store, secure and dispose of your Personal Information.
|
||||
A copy of the Australian Privacy Principles may be obtained from the website of The Office of the Australian
|
||||
Information Commissioner at www.aoic.gov.au</p>
|
||||
<h2>Req. Legal Disclaimer</h2>
|
||||
<p>ARCHBLOX is not associated, partnered or owned with Roblox Corp in any way.</p>
|
||||
<h2>How we store your passwords</h2>
|
||||
<p>As with every other site that uses passwords, we need a way to secure them, so no bad actors can read them. We use
|
||||
bcrypt to store your passwords securely.</p>
|
||||
<h2>What is Personal Information and why do we collect it?</h2>
|
||||
<p>Personal Information is information that identifies an individual. The Personal Information we collect include your
|
||||
username, age and email address.
|
||||
We also store your Places, Decals, T-Shirts, Shirts, Pants, Audios, Settings, Friends and ARKOTs until you delete it
|
||||
yourself, or we moderate it (see our Terms of Service).
|
||||
This Personal Information is obtained from our website archblox.com. <a style="color: blue;"
|
||||
href="https://media.discordapp.net/attachments/987687460974788669/991175756602409041/unknown.png?width=1440&height=345">We
|
||||
do not store your IP Address.</a>
|
||||
We collect your Personal Information for the primary purpose of using the services. We may also use your Personal
|
||||
Information for secondary purposes closely related to the primary purpose, in circumstances where you would
|
||||
reasonably expect such use or disclosure.
|
||||
When we collect Personal Information, we will, where appropriate and where possible, explain to you why we are
|
||||
collecting the information and how we plan to use it.</p>
|
||||
<h2>What happens when your account gets terminated?</h2>
|
||||
<p>Within 3 months of being terminated, your account will be forever deleted. This includes all your stored data, and
|
||||
personal information. YOU CAN APPEAL YOUR TERMINATION.</p>
|
||||
<h2>What happens if your account is inactive for a long time?</h2>
|
||||
<p>After 1 year of inactivity, your account goes into a "disabled" state, where you can only change your Personal
|
||||
Information. You can either ask for it to be re-enabled or deleted. If it is inactive for another year after being
|
||||
disabled, it will be terminated, and then will lose all the stored data after the 3-month period of being
|
||||
terminated.</p>
|
||||
<h2>Disclosure of Personal Information</h2>
|
||||
<p>Your Personal Information will only be disclosed when required by law and when you request for it. (See
|
||||
Access/Deletion of your Personal Information for more information.)</p>
|
||||
<h2>Security of Personal Information</h2>
|
||||
<p>Your Personal Information is stored in a manner that reasonably protects it from misuse and loss and from
|
||||
unauthorized access, modification or disclosure.</p>
|
||||
<h2>Access/Deletion of your Personal Information</h2>
|
||||
<p>You may access, delete and update and/or correct the Personal Information we hold (that is yours). If you wish to
|
||||
access your Personal Information, please open the Settings/Build page, or contact us on our server.
|
||||
In order to protect your Personal Information, we may require identification from you before releasing the requested
|
||||
information.</p>
|
||||
<h2>Policy Updates</h2>
|
||||
<p>This Policy can change from time to time and is available on our website. You will be notified of this change.</p>
|
||||
<h2>Privacy Policy Complaints and Enquiries</h2>
|
||||
<p>If you have any queries or complaints about our Privacy Policy, please contact us on our Discord.</p>
|
||||
<br>
|
||||
@endsection
|
||||
|
|
@ -1,56 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<title>Terms of Service - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Terms of Service - 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="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>
|
||||
<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>Terms of Service</h1>
|
||||
<p>Welcome to ARCHBLOX! Before playing, you'll need to know the rules to make sure you know what you can and can't do here.</p>
|
||||
<br>
|
||||
<h2>Our Rules</h2>
|
||||
<h5>At the end of every rule there is a "()" section containing what the punishment is for breaking that rule.</h5>
|
||||
<p>• Swearing is fine, but please do not say any racial or homophobic slurs. (Ban for few days, Termination)</p>
|
||||
<p>• Do not upload NSFW/NSFL content to ARCHBLOX, or post links to that contents. (Termination)</p>
|
||||
<p>• You must be over the age of 13 to play ARCHBLOX. (Termination)</p>
|
||||
<p>• Don't mini-mod, or pretend to be a ARCHBLOX Developer or Administrator. (Warning, Ban for few days)</p>
|
||||
<p>• Do not scam other users for their ARKOTs. (Ban for few days, Termination)</p>
|
||||
<p>• Do not harass other users. (Ban for few days, Termination)</p>
|
||||
<p>• Do not make accounts for the purpose of breaking rules. (Termination)</p>
|
||||
<p>• Exploiting is NOT allowed, unless you are testing it in your own game. (Termination)</p>
|
||||
<p>• Don't impersonate other users. (Termination)</p>
|
||||
<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>
|
||||
<br>
|
||||
</div>
|
||||
<div id="footer_signup">
|
||||
<p>ARCHBLOX is not affiliated with Roblox Corp, Lego, Sony, SEGA, Microsoft, Nintendo and Morbius. It's Morbin time!</p>
|
||||
<p><a href="{{ route('privacy') }}">Privacy Policy</a> <a href="{{ route('tos') }}">Terms of Service</a></p>
|
||||
</div id="footer">
|
||||
</body>
|
||||
</html>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Terms of Service - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Terms of Service - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Terms of Service</h1>
|
||||
<p>Welcome to ARCHBLOX! Before playing, you'll need to know the rules to make sure you know what you can and can't do
|
||||
here.</p>
|
||||
<br>
|
||||
<h2>Our Rules</h2>
|
||||
<h5>At the end of every rule there is a "()" section containing what the punishment is for breaking that rule.</h5>
|
||||
<p>• Swearing is fine, but please do not say any racial or homophobic slurs. (Ban for few days, Termination)</p>
|
||||
<p>• Do not upload NSFW/NSFL content to ARCHBLOX, or post links to that contents. (Termination)</p>
|
||||
<p>• You must be over the age of 13 to play ARCHBLOX. (Termination)</p>
|
||||
<p>• Don't mini-mod, or pretend to be a ARCHBLOX Developer or Administrator. (Warning, Ban for few days)</p>
|
||||
<p>• Do not scam other users for their ARKOTs. (Ban for few days, Termination)</p>
|
||||
<p>• Do not harass other users. (Ban for few days, Termination)</p>
|
||||
<p>• Do not make accounts for the purpose of breaking rules. (Termination)</p>
|
||||
<p>• Exploiting is NOT allowed, unless you are testing it in your own game. (Termination)</p>
|
||||
<p>• Don't impersonate other users. (Termination)</p>
|
||||
<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>
|
||||
<br>
|
||||
@endsection
|
||||
|
|
@ -1,68 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<title>{{ env('APP_NAME') }}</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') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display:none">
|
||||
@csrf
|
||||
</form>
|
||||
<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">
|
||||
<p class="warningtext">Your account isn't actually terminated. This is just a test page.</p>
|
||||
<br>
|
||||
<h1>Account Deleted</h1> <!-- Ban Type Goes here (Warning, [day number] Day Ban, Account Deleted, Account Disabled) -->
|
||||
<p><strong>Action taken on:</strong> 01/01/1970 12:00 AM</p> <!-- Timestamp -->
|
||||
<p><strong>Reason:</strong> liking the iphone 6</p> <!-- Reason -->
|
||||
<p><strong>Moderator Note:</strong> i like men</p> <!-- Moderator Note -->
|
||||
<p>If you would like to appeal, please <a href="https://discord.gg/nudzQ7hkWY">join our discord server.</a></p> <!-- If not banned from the server -->
|
||||
<!-- <p>You are unable to appeal your ban.</p> --> <!-- If banned from the server -->
|
||||
<!-- <p>To reactivate your account, click the button below.</p> --> <!-- If account is disabled only -->
|
||||
<p>Your account will be fully deleted in 3 months.</p> <!-- If account is disabled/terminated only, show time remaining. -->
|
||||
<!-- <a><button class="greybutton">Reactivate Account</button></a> --> <!-- Show this button once the ban time period is over, the account is disabled or it is a warn -->
|
||||
<a href="{{ route('logout') }}" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"><button class="redbutton">Log out</button></a> <!-- Show this button only if the account is terminated, or is currently in the ban time period. -->
|
||||
</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>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>{{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="{{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<p class="warningtext">Your account isn't actually terminated. This is just a test page.</p>
|
||||
<br>
|
||||
<h1>Account Deleted</h1> <!-- Ban Type Goes here (Warning, [day number] Day Ban, Account Deleted, Account Disabled) -->
|
||||
<p><strong>Action taken on:</strong> 01/01/1970 12:00 AM</p> <!-- Timestamp -->
|
||||
<p><strong>Reason:</strong> liking the iphone 6</p> <!-- Reason -->
|
||||
<p><strong>Moderator Note:</strong> i like men</p> <!-- Moderator Note -->
|
||||
<p>If you would like to appeal, please <a href="https://discord.gg/nudzQ7hkWY">join our discord server.</a></p>
|
||||
<!-- If not banned from the server -->
|
||||
<!-- <p>You are unable to appeal your ban.</p> -->
|
||||
<!-- If banned from the server -->
|
||||
<!-- <p>To reactivate your account, click the button below.</p> -->
|
||||
<!-- If account is disabled only -->
|
||||
<p>Your account will be fully deleted in 3 months.</p>
|
||||
<!-- If account is disabled/terminated only, show time remaining. -->
|
||||
<!-- <a><button class="greybutton">Reactivate Account</button></a> -->
|
||||
<!-- Show this button once the ban time period is over, the account is disabled or it is a warn -->
|
||||
<a href="{{ route('logout') }}"
|
||||
onclick="event.preventDefault(); document.getElementById('logout-form').submit();"><button class="redbutton">Log
|
||||
out</button></a>
|
||||
<!-- Show this button only if the account is terminated, or is currently in the ban time period. -->
|
||||
@endsection
|
||||
|
|
@ -1,75 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<title>Download - {{ env('APP_NAME') }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta content="Download - {{ env('APP_NAME') }}" 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') }}">
|
||||
@auth
|
||||
@switch (Auth::user()->settings->theme)
|
||||
@case(3)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/appdark.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
@case(2)
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
<link href="{{ asset('css/2018.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@break
|
||||
|
||||
@default
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endswitch
|
||||
@else
|
||||
<link href="{{ asset('css/app.css?id=' . Str::random(8)) }}" rel="stylesheet">
|
||||
@endauth
|
||||
</head>
|
||||
<body>
|
||||
@extends('layouts.loggedout')
|
||||
@section('title')
|
||||
<title>Downloads - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="Downloads - {{ env('APP_NAME') }}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||
@endsection
|
||||
@section('contentloggedout')
|
||||
<h1>Downloads</h1>
|
||||
<p>ARCHBLOX will be installed to %LOCALAPPDATA%\Archblx</p>
|
||||
<p class="important">You must be logged in to join games. Use studio to log in to your account.
|
||||
<p>
|
||||
<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>Downloads</h1>
|
||||
<p>ARCHBLOX will be installed to %LOCALAPPDATA%\Archblx</p>
|
||||
<p class="important">You must be logged in to join games. Use studio to log in to your account.<p>
|
||||
<br>
|
||||
<strong>Requires .NET Framework 4.0.</strong>
|
||||
<p>Windows XP/Vista v1.0</p>
|
||||
<p><a href="{{ asset('xp/ARCHBLOXLauncher_XP.exe') }}">Launcher</a> | <a href="{{ asset('xp/ARCHBLOXBootstrapper_XP.exe') }}">Studio</a></p>
|
||||
<br>
|
||||
<strong>The below downloads require Windows 7 or newer and they require .NET Core 3.1.</strong>
|
||||
<br>
|
||||
<p>ARCHBLOX Launcher v2.7</p>
|
||||
<p><a href="{{ asset('launcher/ARCHBLOXLauncher-32bit.exe') }}">32 Bit</a> | <a href="{{ asset('launcher/ARCHBLOXLauncher-64bit.exe') }}">64 Bit</a></p>
|
||||
<br>
|
||||
<p>ARCHBLOX Studio Bootstrapper v1.4</p>
|
||||
<p><a href="{{ asset('bootstrapper/ARCHBLOXBootstrapper-32bit.exe') }}">32 Bit</a> | <a href="{{ asset('bootstrapper/ARCHBLOXBootstrapper-64bit.exe') }}">64 Bit</a></p>
|
||||
<br>
|
||||
<p>Source Code</p>
|
||||
<p><a href="https://github.com/Thomasluigi07/ARCHBLOXLauncher">Launcher</a> | <a href="https://github.com/Thomasluigi07/ARCHBLOXBootstrapper">Studio Bootstrapper</a></p>
|
||||
<p><a href="https://github.com/Thomasluigi07/ARCHBLOXLauncherLegacy">Launcher (XP, Vista)</a> | <a href="https://github.com/Thomasluigi07/ARCHBLOXBootstrapperLegacy">Studio Bootstrapper (XP, Vista)</a></p>
|
||||
<br>
|
||||
<p>If you get a popup saying "Windows protected your PC", press "More info" and then press "Run anyway".</p>
|
||||
<br>
|
||||
<p>If you get a popup saying "Virus detected", open Windows Security (Windows Defender if on Windows 10 or earlier) and then press Virus & threat protection, press Manage Settings, select Add or Remove exclusions, make a folder you want to exclude and then choose that folder, install the exe there.</p>
|
||||
</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>
|
||||
<strong>Requires .NET Framework 4.0.</strong>
|
||||
<p>Windows XP/Vista v1.0</p>
|
||||
<p><a href="{{ asset('xp/ARCHBLOXLauncher_XP.exe') }}">Launcher</a> | <a
|
||||
href="{{ asset('xp/ARCHBLOXBootstrapper_XP.exe') }}">Studio</a></p>
|
||||
<br>
|
||||
<strong>The below downloads require Windows 7 or newer and they require .NET Core 3.1.</strong>
|
||||
<br>
|
||||
<p>ARCHBLOX Launcher v2.7</p>
|
||||
<p><a href="{{ asset('launcher/ARCHBLOXLauncher-32bit.exe') }}">32 Bit</a> | <a
|
||||
href="{{ asset('launcher/ARCHBLOXLauncher-64bit.exe') }}">64 Bit</a></p>
|
||||
<br>
|
||||
<p>ARCHBLOX Studio Bootstrapper v1.4</p>
|
||||
<p><a href="{{ asset('bootstrapper/ARCHBLOXBootstrapper-32bit.exe') }}">32 Bit</a> | <a
|
||||
href="{{ asset('bootstrapper/ARCHBLOXBootstrapper-64bit.exe') }}">64 Bit</a></p>
|
||||
<br>
|
||||
<p>Source Code</p>
|
||||
<p><a href="https://github.com/Thomasluigi07/ARCHBLOXLauncher">Launcher</a> | <a
|
||||
href="https://github.com/Thomasluigi07/ARCHBLOXBootstrapper">Studio Bootstrapper</a></p>
|
||||
<p><a href="https://github.com/Thomasluigi07/ARCHBLOXLauncherLegacy">Launcher (XP, Vista)</a> | <a
|
||||
href="https://github.com/Thomasluigi07/ARCHBLOXBootstrapperLegacy">Studio Bootstrapper (XP, Vista)</a></p>
|
||||
<br>
|
||||
<p>If you get a popup saying "Windows protected your PC", press "More info" and then press "Run anyway".</p>
|
||||
<br>
|
||||
<p>If you get a popup saying "Virus detected", open Windows Security (Windows Defender if on Windows 10 or earlier) and
|
||||
then press Virus & threat protection, press Manage Settings, select Add or Remove exclusions, make a folder you want
|
||||
to exclude and then choose that folder, install the exe there.</p>
|
||||
@endsection
|
||||
Loading…
Reference in New Issue