![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/resources/themes/admin/auth/2fa/ |
@extends('layouts.auth') @section('title','Login') @section('content') <div class="register-logo"> </div> <div class="register-box-body"> <div @include(\TwoFactorAuth::getTokenPageView()) </div> <p>@lang('corals-admin::labels.auth.verify_login_here')</p> <form method="POST" action="{{url('auth/token')}}"> {!! csrf_field() !!} @if (count($errors) > 0) <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif <div class="form-group has-feedback"> <input type="text" name="token" class="form-control" placeholder="@lang('User::attributes.user.token')"> </div> <div class="row"> <div class="col-md-12 text-center"> <button type="submit" class="btn btn-success btn-block">@lang('corals-admin::labels.auth.verify_token')</button> <br/> @if(\TwoFactorAuth::canSendToken($user)) <a class="" href="{{ url('auth/token') }}">@lang('corals-admin::labels.auth.send_token')</a><br> @endif </div><!-- /.col --> </div> </form> @endsection @section('js') @endsection