Translation login/register
This commit is contained in:
@@ -16,32 +16,32 @@
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<h1>Anmelden</h1>
|
||||
<h1>{{ __('app.login.title') }}</h1>
|
||||
|
||||
<span>
|
||||
|
||||
@guest
|
||||
<div id="fehlermeldung">Bitte melden Sie sich gefälligst an!</div>
|
||||
<div id="fehlermeldung">{{ __('app.login.please_login') }}</div>
|
||||
<br /><br />
|
||||
<table class="eingabemaske">
|
||||
<tr>
|
||||
<td><label for="mail">Elektronische Postadresse:</label></td>
|
||||
<td><label for="mail">{{ __('app.login.email') }}</label></td>
|
||||
<td><input size="32" type="text" id="mail" pattern="^[0-9A-Za-z+_\-]+@[0-9A-Za-z_\-]+\.[0-9A-Za-z]+$"
|
||||
title="Nur echte Adressen der elektronischen Post verwenden!"/></td>
|
||||
title="{{ __('app.login.email_title') }}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="password">Kennwort:</label></td>
|
||||
<td><label for="password">{{ __('app.login.password') }}</label></td>
|
||||
<td><input size="32" type="password" id="password"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br/><br/>
|
||||
<button class="eingabemaske" onclick="login()">Anmelden</button>
|
||||
<button class="eingabemaske" onclick="login()">{{ __('app.login.title') }}</button>
|
||||
|
||||
@endguest
|
||||
@auth
|
||||
<div id="fehlermeldung">Sie sind angemeldet.</div>
|
||||
<a href="{{ route('logout') }}"><button>Abmelden</button></a>
|
||||
<div id="fehlermeldung">{{ __('app.login.logged_in') }}</div>
|
||||
<a href="{{ route('logout') }}"><button>{{ __('app.login.logout') }}</button></a>
|
||||
@endauth
|
||||
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user