- Also extracted "Already have account?" text to translation files.
'remember_me' => 'Remember Me',
'ldap_email_hint' => 'Please enter an email to use for this account.',
'create_account' => 'Create Account',
+ 'already_have_account' => 'Already have an account?',
+ 'dont_have_account' => 'Don\'t have an account?',
'social_login' => 'Social Login',
'social_registration' => 'Social Registration',
'social_registration_text' => 'Register and sign in using another service.',
@include('form.password', ['name' => 'password', 'tabindex' => 1])
<span class="block small mt-s">
<a href="{{ baseUrl('/password/email') }}">{{ trans('auth.forgot_password') }}</a>
- @if(setting('registration-enabled', false))
- • <a href="{{ baseUrl('/register') }}">{{ trans('auth.sign_up') }}</a>
- @endif
</span>
</div>
<div class="my-l"> </div>
- <div class="card content-wrap">
+ <div class="card content-wrap auto-height">
<h1 class="list-heading">{{ title_case(trans('auth.log_in')) }}</h1>
<form action="{{ baseUrl('/login') }}" method="POST" id="login-form" class="mt-l">
'label' => trans('auth.remember_me'),
])
</div>
+
<div class="text-right">
<button class="button primary" tabindex="3">{{ title_case(trans('auth.log_in')) }}</button>
</div>
</div>
@endforeach
@endif
+
+ @if(setting('registration-enabled', false))
+ <div class="text-center">
+ <hr class="my-l">
+ <a href="{{ baseUrl('/register') }}">{{ trans('auth.dont_have_account') }}</a>
+ </div>
+ @endif
</div>
</div>
<div class="my-l"> </div>
- <div class="card content-wrap">
+ <div class="card content-wrap auto-height">
<h1 class="list-heading">{{ title_case(trans('auth.sign_up')) }}</h1>
<form action="{{ baseUrl("/register") }}" method="POST" class="mt-l stretch-inputs">
<div class="grid half collapse-xs gap-xl v-center mt-m">
<div class="text-small">
- <a href="{{ baseUrl('/login') }}">Already have an account?</a>
+ <a href="{{ baseUrl('/login') }}">{{ trans('auth.already_have_account') }}</a>
</div>
<div class="from-group text-right">
<button class="button primary">{{ trans('auth.create_account') }}</button>