- flight ident now use this format: VA IATA(if empty ICAO) + Flight Number + - + Flight Code (without C) + - + Flight Leg (without L) - added function __trans_choice in helpers.php for translation - fixed error in flight edit/insert panel not showing/inserting Tuesday in days - fixed an error occurring when metar retrieved is empty - edited now-ui-kit.css to align login fields correctly - added /public/assets/frontend/js/core/jquery-3.3.1.min.js to fix a missed resource error in authentication pages - added translations file for en and it locales - translated all the frontend templates
70 lines
2.8 KiB
PHP
70 lines
2.8 KiB
PHP
@extends('auth.layout')
|
|
@section('title', __('Log In'))
|
|
|
|
@section('content')
|
|
<div class="col-md-4 content-center">
|
|
<div class="card card-login card-plain">
|
|
{{ Form::open(['url' => url('/login'), 'method' => 'post']) }}
|
|
<div class="header header-primary text-center">
|
|
<div class="logo-container" style="width: 320px;">
|
|
<img src="{{ public_asset('/assets/frontend/img/logo.svg') }}" width="320" height="320" style="background: #FFF">
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<div class="input-group form-group-no-border{{ $errors->has('email') ? ' has-error' : '' }} input-lg">
|
|
<span class="input-group-addon">
|
|
<i class="now-ui-icons users_circle-08"></i>
|
|
</span>
|
|
{{
|
|
Form::text('email', old('email'), [
|
|
'id' => 'email',
|
|
'placeholder' => 'Email',
|
|
'class' => 'form-control',
|
|
'required' => true,
|
|
])
|
|
}}
|
|
</div>
|
|
@if ($errors->has('email'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('email') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('password') ? ' has-error' : '' }} input-lg">
|
|
<span class="input-group-addon">
|
|
<i class="now-ui-icons ui-1_lock-circle-open"></i>
|
|
</span>
|
|
{{
|
|
Form::password('password', [
|
|
'name' => 'password',
|
|
'class' => 'form-control',
|
|
'placeholder' => 'Password',
|
|
'required' => true,
|
|
])
|
|
}}
|
|
</div>
|
|
@if ($errors->has('password'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
<div class="footer text-center">
|
|
<button href="#pablo" class="btn btn-primary btn-round btn-lg btn-block">{{ __('Login') }}</button>
|
|
</div>
|
|
<div class="pull-left">
|
|
<h6>
|
|
<a href="{{ url('/register') }}" class="link">{{ __('Create Account') }}</a>
|
|
</h6>
|
|
</div>
|
|
<div class="pull-right">
|
|
<h6>
|
|
<a href="{{ url('/password/reset') }}" class="link">{{ __('Forgot Password') }}?</a>
|
|
</h6>
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
</div>
|
|
@endsection
|