mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 12:20:22 +00:00
Applied .blade.php formatting rules
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user