flexisip-account-manager/flexiapi/resources/views/account/login_email.blade.php
Timothée Jaussoin 93f622b8e7 Small UI adjustments
Add the lindoor base CSS
Update the dependencies
2020-09-14 11:24:59 +02:00

19 lines
No EOL
759 B
PHP

@extends('layouts.main')
@section('content')
@if (Auth::check())
@include('parts.already_auth')
@else
<div class="card mt-3">
<div class="card-body">
{!! Form::open(['route' => 'account.authenticate_email']) !!}
<div class="form-group">
{!! Form::label('email', 'Email') !!}
{!! Form::email('email', old('email'), ['class' => 'form-control', 'placeholder' => 'myemail@address.org', 'required']) !!}
</div>
{!! Form::submit('Send the authentication link', ['class' => 'btn btn-primary btn-centered']) !!}
{!! Form::close() !!}
</div>
</div>
@endif
@endsection