|
@@ -7,16 +7,26 @@
|
|
|
</div>
|
|
|
|
|
|
<hr>
|
|
|
-
|
|
|
- <p class="lead pb-3">
|
|
|
- Each code can only be used once.
|
|
|
- </p>
|
|
|
-
|
|
|
- <p class="lead"></p>
|
|
|
- <ul class="list-group">
|
|
|
- @foreach($codes as $code)
|
|
|
- <li class="list-group-item"><code>{{$code}}</code></li>
|
|
|
- @endforeach
|
|
|
- </ul>
|
|
|
+ @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
|
|
|
|
|
|
@endsection
|