Applied .blade.php formatting rules

This commit is contained in:
Bernd Bestel
2020-08-31 20:32:50 +02:00
parent ea9ba0b2be
commit 33325d5560
90 changed files with 4000 additions and 2091 deletions

View File

@@ -8,27 +8,42 @@
<div class="col-lg-6 offset-lg-3 col-xs-12">
<h2 class="text-center">@yield('title')</h2>
<hr>
<form method="post" action="{{ $U('/login') }}" id="login-form" novalidate>
<form method="post"
action="{{ $U('/login') }}"
id="login-form"
novalidate>
<div class="form-group">
<label for="name">{{ $__t('Username') }}</label>
<input type="text" class="form-control" required id="username" name="username">
<input type="text"
class="form-control"
required
id="username"
name="username">
</div>
<div class="form-group">
<label for="name">{{ $__t('Password') }}</label>
<input type="password" class="form-control" required id="password" name="password">
<div id="login-error" class="form-text text-danger d-none"></div>
<input type="password"
class="form-control"
required
id="password"
name="password">
<div id="login-error"
class="form-text text-danger d-none"></div>
</div>
<div class="checkbox">
<label for="stay_logged_in">
<input type="checkbox" id="stay_logged_in" name="stay_logged_in"> {{ $__t('Stay logged in permanently') }}
<input type="checkbox"
id="stay_logged_in"
name="stay_logged_in"> {{ $__t('Stay logged in permanently') }}
<p class="form-text text-muted small my-0">{{ $__t('When not set, you will get logged out at latest after 30 days') }}</p>
</label>
</div>
<button id="login-button" class="btn btn-success">{{ $__t('OK') }}</button>
<button id="login-button"
class="btn btn-success">{{ $__t('OK') }}</button>
</form>
</div>