2023-07-16 14:27:48 +00:00
|
|
|
@extends('layouts.minimal')
|
|
|
|
@section('title', 'Error 403: IP Blocked!')
|
|
|
|
@section('content')
|
|
|
|
<h1>Error 403: IP Blocked!</h1>
|
2023-07-25 23:08:58 +00:00
|
|
|
<hr>
|
2023-07-16 14:27:48 +00:00
|
|
|
<p>Your IP has been banned from submitting to the guestbook.</p>
|
|
|
|
@if (isset($reason))
|
|
|
|
<p><b>Reason:</b> {{ $reason }}</p>
|
|
|
|
@endif
|
2023-07-25 23:08:58 +00:00
|
|
|
<br>
|
2023-07-16 14:27:48 +00:00
|
|
|
Click <a href="/guestbook">here</a> to go back to the guestbook.
|
|
|
|
@stop
|