diff options
Diffstat (limited to 'resources/views/vendor/site-protection/site-protection-form.blade.php')
-rw-r--r-- | resources/views/vendor/site-protection/site-protection-form.blade.php | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/resources/views/vendor/site-protection/site-protection-form.blade.php b/resources/views/vendor/site-protection/site-protection-form.blade.php new file mode 100644 index 0000000..dfb5572 --- /dev/null +++ b/resources/views/vendor/site-protection/site-protection-form.blade.php @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html> + <head> + <title>Password protected</title> + + <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css"> + + <style> + html, body { + height: 100%; + } + + body { + margin: 0; + padding: 0; + width: 100%; + display: table; + font-family: 'Lato'; + } + + .container { + text-align: center; + display: table-cell; + vertical-align: middle; + } + + .content { + text-align: center; + display: inline-block; + } + + .title { + font-size: 36px; + } + + .form-control { + border: 1px solid #ccc; + padding: 10px 20px; + margin-top: 20px; + } + + .hidden { + display: none; + } + + .text-danger { + color: #d9534f; + } + </style> + </head> + <body> + <div class="container"> + <div class="content"> + <div class="title">Ooh. Diese Seite ist geschützt!</div> + <form method="GET"> + {{ csrf_field() }} + + <div class="form-group"> + <input type="password" name="site-password-protected" placeholder="Bitte gebe das streng geheime Passwort ein!" class="form-control" tabindex="1" autofocus /> + @if (Request::get('site-password-protected')) + <div class="text-danger">Das Passwort ist falsch :(</div> + @endif + </div> + <input type="submit" class="hidden" /> + </form> + </div> + </div> + </body> +</html> |