diff options
author | Marvin Borner | 2018-12-05 17:31:36 +0100 |
---|---|---|
committer | Marvin Borner | 2018-12-05 17:31:36 +0100 |
commit | 9d1a810fa983a045294e6d0b8ad761f5dbfb8939 (patch) | |
tree | 46c8796cd6747b3746478b4e3b8b29226f588ddb /resources/views |
Initial commit (actually already finished)
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/common/errors.blade.php | 14 | ||||
-rw-r--r-- | resources/views/layouts/app.blade.php | 16 | ||||
-rw-r--r-- | resources/views/quotes.blade.php | 35 | ||||
-rw-r--r-- | resources/views/vendor/site-protection/site-protection-form.blade.php | 69 |
4 files changed, 134 insertions, 0 deletions
diff --git a/resources/views/common/errors.blade.php b/resources/views/common/errors.blade.php new file mode 100644 index 0000000..c4394a4 --- /dev/null +++ b/resources/views/common/errors.blade.php @@ -0,0 +1,14 @@ +@if (count($errors) > 0) + <!-- Form Error List --> + <div class="alert alert-danger"> + <strong>Ups, etwas ist schiefgelaufen!</strong> + + <br><br> + + <ul> + @foreach ($errors->all() as $error) + <li>{{ $error }}</li> + @endforeach + </ul> + </div> +@endif diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..d6ec3e6 --- /dev/null +++ b/resources/views/layouts/app.blade.php @@ -0,0 +1,16 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"> + <title>Zitate {{ config('app.name') }}</title> +</head> +<body class="bg-light"> +<div class="container-fluid"> + @yield('content') +</div> +</body> +</html> diff --git a/resources/views/quotes.blade.php b/resources/views/quotes.blade.php new file mode 100644 index 0000000..0a09d45 --- /dev/null +++ b/resources/views/quotes.blade.php @@ -0,0 +1,35 @@ +@extends('layouts.app') + +@section('content') + <h1 class="text-center mt-3">Zitate des {{ config('app.name') }}</h1> + + <form action="/quote" method="POST"> + {{ csrf_field() }} + <div class="form-group"> + <label for="quote">Zitat:</label> + <input name="quote" type="text" class="form-control" id="quote" aria-describedby="emailHelp" placeholder="z.B. Ich bin toll!"> + </div> + <div class="form-group"> + <label for="quotist">Person:</label> + <input name="quotist" type="text" class="form-control" id="quotist" placeholder="z.B. Marvin/Herr Wolkersdorfer"> + </div> + <button type="submit" class="btn btn-primary">Senden!</button> + </form> + <br> + <table class="table table-dark rounded"> + <thead> + <tr> + <th scope="col">Zitat</th> + <th scope="col">Person</th> + </tr> + </thead> + <tbody> + @foreach ($quotes as $quote) + <tr> + <td class="table-text">{{ $quote->quote }}</td> + <td class="table-text">{{ $quote->quotist }}</td> + </tr> + @endforeach + </tbody> + </table> +@endsection 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> |