3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/2fa/authenticate.blade.php

32 lines
1.2 KiB
PHP
Raw Normal View History

@extends('layouts.form')
2021-06-29 20:05:00 +00:00
@section('body')
<div class="login-page">
<div class="login-text">
@component('components.title')
@endcomponent
</div>
<div class="login-body">
<div>
<form method="post" action="{{ route('login') }}" action="{{ route('2fa.authenticate') }}">
@csrf
<label class="col-xs-12">
Token:
<input id="two_factor" type="text" class="form-input" name="two_factor" placeholder="123456" required autocomplete="off" autofocus>
</label>
2021-06-29 20:05:00 +00:00
<div class="col-xs-12">
<button class="btn btn-custom" style="width: 100%">{{ __('Authenticate') }}</button>
<a class="btn btn-link" style="margin-top: 1rem" href="{{ route('logout') }}">{{ __('Logout') }}</a>
2021-06-29 20:05:00 +00:00
</div>
</form>
</div>
2020-02-26 13:59:58 +00:00
<div class="login-footer">
<span>Copyright &copy; 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo.png') }}" alt="IOByte"></a>. All rights reserved.</span>
</div>
2020-02-26 13:59:58 +00:00
</div>
</div>
@endsection