Added login/register message partials for easier use via theme system

Related to #608
This commit is contained in:
Dan Brown
2022-11-12 09:02:33 +00:00
parent 2fa5c2581c
commit d2cd33e226
5 changed files with 25 additions and 0 deletions

View File

@ -9,6 +9,8 @@
<div class="card content-wrap auto-height">
<h1 class="list-heading">{{ Str::title(trans('auth.log_in')) }}</h1>
@include('auth.parts.login-message')
@include('auth.parts.login-form-' . $authMethod)
@if(count($socialDrivers) > 0)

View File

@ -0,0 +1,2 @@
{{-- This is a placeholder template file provided as a --}}
{{-- convenience to users of the visual theme system. --}}

View File

@ -0,0 +1,2 @@
{{-- This is a placeholder template file provided as a --}}
{{-- convenience to users of the visual theme system. --}}

View File

@ -8,6 +8,8 @@
<div class="card content-wrap auto-height">
<h1 class="list-heading">{{ Str::title(trans('auth.sign_up')) }}</h1>
@include('auth.parts.register-message')
<form action="{{ url("/register") }}" method="POST" class="mt-l stretch-inputs">
{!! csrf_field() !!}