2021-11-06 03:51:52 +00:00
|
|
|
@extends('layouts.app')
|
2018-09-16 05:15:45 +00:00
|
|
|
|
2021-11-06 03:51:52 +00:00
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="card shadow-none border mt-5">
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 p-3 p-md-5">
|
|
|
|
<div class="title">
|
|
|
|
<h3 class="font-weight-bold">Two-Factor Authentication Recovery Codes</h3>
|
|
|
|
</div>
|
2018-09-16 05:15:45 +00:00
|
|
|
|
2021-11-06 03:51:52 +00:00
|
|
|
<hr>
|
|
|
|
@if(count($codes) > 0)
|
|
|
|
<p class="lead pb-3">
|
|
|
|
Each code can only be used once.
|
|
|
|
</p>
|
|
|
|
<ul class="list-group">
|
|
|
|
@foreach($codes as $code)
|
|
|
|
<li class="list-group-item"><code>{{$code}}</code></li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
@else
|
|
|
|
<div class="pt-5">
|
|
|
|
<h4 class="font-weight-bold">You are out of recovery codes</h4>
|
|
|
|
<p class="lead">Generate more recovery codes and store them in a safe place.</p>
|
|
|
|
<p>
|
|
|
|
<form method="post">
|
|
|
|
@csrf
|
|
|
|
<button type="submit" class="btn btn-primary font-weight-bold">Generate Recovery Codes</button>
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-28 04:35:24 +00:00
|
|
|
</div>
|
2021-11-06 03:51:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|