summaryrefslogtreecommitdiff
path: root/resources/views/vendor/site-protection/site-protection-form.blade.php
blob: dfb55727462cca53aefbd39aa61c439d1ec7e894 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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>