mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
Updated login and register form layout slightly
This commit is contained in:
parent
6e55018974
commit
f9e39e74bc
3 changed files with 9 additions and 4 deletions
5
resources/css/style.css
vendored
5
resources/css/style.css
vendored
|
@ -21,6 +21,11 @@ Custom styles go in here
|
||||||
display: contents !important;
|
display: contents !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-signin input[type="password"] {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-radius: var(--bs-border-radius) !important;
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 1400px) {
|
@media (min-width: 1400px) {
|
||||||
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
|
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
|
||||||
max-width: 1520px;
|
max-width: 1520px;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<!-- Validation Errors -->
|
<!-- Validation Errors -->
|
||||||
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
||||||
|
|
||||||
<h3 class="text-center mb-4">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</h3>
|
<h3 class="text-center mb-5">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</h3>
|
||||||
<form method="POST" action="{{ route('login') }}">
|
<form method="POST" action="{{ route('login') }}">
|
||||||
@csrf
|
@csrf
|
||||||
<div class="form-floating mb-3">
|
<div class="form-floating mb-3">
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
{{ __('Forgot your password?') }}
|
{{ __('Forgot your password?') }}
|
||||||
</a>
|
</a>
|
||||||
@endif
|
@endif
|
||||||
<x-button class="mt-3 w-100 btn btn-lg btn-primary">
|
<x-button class="mt-4 w-100 btn btn-lg btn-primary">
|
||||||
{{ __('Login') }}
|
{{ __('Login') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<!-- Validation Errors -->
|
<!-- Validation Errors -->
|
||||||
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
||||||
|
|
||||||
<h3 class="text-center mb-4">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif Register</h3>
|
<h3 class="text-center mb-5">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif Register</h3>
|
||||||
<form method="POST" action="{{ route('register') }}">
|
<form method="POST" action="{{ route('register') }}">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<x-button class="mt-3 w-100 btn btn-lg btn-primary">
|
<x-button class="mt-4 w-100 btn btn-lg btn-primary">
|
||||||
{{ __('Register') }}
|
{{ __('Register') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue