diff --git a/public/css/app.css b/public/css/app.css index 65aec8e..9009177 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -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 { diff --git a/public/css/appdark.css b/public/css/appdark.css index b6585ca..1abc117 100644 --- a/public/css/appdark.css +++ b/public/css/appdark.css @@ -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; } diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index e0b72ed..3c8515a 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,76 +1,46 @@ - - - - - Login - {{ env('APP_NAME') }} - - - - - - - - - - - - - - - - - +@extends('layouts.loggedout') +@section('title') +Login - {{ env('APP_NAME') }} +@endsection +@section('titlediscord') + +@endsection +@section('descdiscord') + +@endsection +@section('contentloggedout') +

Welcome back!

+

Don't have an account? Click here to sign up.

+
+
+ @csrf +

Username/E-Mail Address

+ + @if ($errors->has('name') || $errors->has('email')) + + {{ $errors->first('name') ?: $errors->first('email') }} + + @endif +

Password

+ + @error('password') + + {{ $message }} + + @enderror
-
-
- ARCHBLOX Logo -

We're Still Morbin'

-
-
-

Welcome back!

-

Don't have an account? Click here to sign up.

-
+ - - @csrf -

Username/E-Mail Address

- - @if ($errors->has('name') || $errors->has('email')) - - {{ $errors->first('name') ?: $errors->first('email') }} - - @endif -

Password

- - @error('password') - - {{ $message }} - - @enderror -
- - - - - @if (Route::has('password.request')) -

- - Forgot Your Password? - - @endif - -
- - - - + + + @if (Route::has('password.request')) +

+ + Forgot Your Password? + + @endif + +@endsection \ No newline at end of file diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php index d51aef0..e99a37b 100644 --- a/resources/views/auth/passwords/email.blade.php +++ b/resources/views/auth/passwords/email.blade.php @@ -1,56 +1,30 @@ - - +@extends('layouts.loggedout') +@section('title') +Reset Password - {{ env('APP_NAME') }} +@endsection +@section('titlediscord') + +@endsection +@section('descdiscord') + +@endsection +@section('contentloggedout') +

Reset Password

+

Check your junk folder if you do not receive the email.


+
+ @csrf +

Email Address

+ + @error('email') + +
{{ $message }} +
+ @enderror +

- - Reset Password - {{ env('APP_NAME') }} - - - - - - - - - - - - - - - - - -
-
- ARCHBLOX Logo -

We're Still Morbin'

-
-
-

Reset Password

-

Check your junk folder if you do not receive the email.


- - @csrf -

Email Address

- - @error('email') - -
{{ $message }} -
- @enderror -

- - - -
- - - - + + +@endsection \ No newline at end of file diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php index a2cf539..1e1b045 100644 --- a/resources/views/auth/passwords/reset.blade.php +++ b/resources/views/auth/passwords/reset.blade.php @@ -1,73 +1,48 @@ - - +@extends('layouts.loggedout') +@section('title') +Reset Password - {{ env('APP_NAME') }} +@endsection +@section('titlediscord') + +@endsection +@section('descdiscord') + +@endsection +@section('contentloggedout') +

Reset Password

+

Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.


+
+ @csrf - - Reset Password - {{ env('APP_NAME') }} - - - - - - - - - - - - - - - + - -
-
- ARCHBLOX Logo -

We're Still Morbin'

-
-
-

Reset Password

-

Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.


- - @csrf +

Email Address

+ - + @error('email') + +
{{ $message }} +
+ @enderror -

Email Address

- +

New Password

+ - @error('email') - -
{{ $message }} -
- @enderror + @error('password') + +
{{ $message }} +
+ @enderror -

New Password

- +

Confirm New Password

+ +

- @error('password') - -
{{ $message }} -
- @enderror - -

Confirm New Password

- -

- - - -
- - - - + + +@endsection \ No newline at end of file diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index 5b68edf..1354e63 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -1,103 +1,76 @@ - - - - - Register - {{ env('APP_NAME') }} - - - - - - - - - - - - - - - - - -
-
-
- ARCHBLOX Logo -

We're Still Morbin'

+@extends('layouts.loggedout') +@section('title') +Register - {{ env('APP_NAME') }} +@endsection +@section('titlediscord') + +@endsection +@section('descdiscord') + +@endsection +@section('contentloggedout') +

Welcome to ARCHBLOX!

+

Have an account already? Click here to log in.

+
+

Before entering anything, please read the Privacy Policy and the Terms of Service.

+
+
+ @csrf +

Username

+ +

Usernames must be 3-20 characters, and must not break the rules.

+ @error('name') +
+ {{ $message }}
-