12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ config_cache('app.name') }} - Authorization</title>
- <link href="{{ mix('/css/app.css') }}" rel="stylesheet">
- <style>
- .passport-authorize .container {
- margin-top: 30px;
- }
- .passport-authorize .scopes {
- margin-top: 20px;
- }
- .passport-authorize .buttons {
- margin-top: 25px;
- text-align: center;
- }
- .passport-authorize .btn {
- width: 125px;
- }
- .passport-authorize .btn-approve {
- margin-right: 15px;
- }
- .passport-authorize form {
- display: inline;
- }
- </style>
- </head>
- <body class="passport-authorize">
- <div class="container">
- <div class="row justify-content-center">
- <div class="col-md-6">
- <div class="text-center mb-5">
- <img src="/img/pixelfed-icon-grey.svg">
- </div>
- <p class="text-center h3 font-weight-light mb-3">Authorize {{ $client->name }}</p>
- <div class="card card-default shadow-none border">
- <div class="card-body">
- <div class="media">
- <img src="/img/icon/alert-circle.svg" class="mr-3" width="32" height="32">
- <div class="media-body">
- <p class="my-0"><span class="font-weight-bold">{{ $client->name }}</span></p>
- <p class="mb-0 text-muted small">wants access to your <strong>{{request()->user()->username}}</strong> account</p>
- </div>
- </div>
- <hr>
- @if (count($scopes) > 0)
- <div class="scopes">
- @foreach ($scopes as $scope)
- <div class="media mb-3">
- <img src="/img/icon/unlock.svg" class="mr-3" width="32" height="32">
- <div class="media-body">
- <p class="my-0"><span class="font-weight-bold">{{ $scope->id }}</span></p>
- <p class="mb-0 text-muted small">{{$scope->description}}</p>
- </div>
- </div>
- @endforeach
- </div>
- @endif
- <div class="buttons">
- <form method="post" action="{{ route('passport.authorizations.approve') }}">
- {{ csrf_field() }}
- <input type="hidden" name="state" value="{{ $request->state }}">
- <input type="hidden" name="client_id" value="{{ $client->id }}">
- <button type="submit" class="btn btn-success font-weight-bold btn-approve">Authorize</button>
- </form>
- <form method="post" action="{{ route('passport.authorizations.deny') }}">
- {{ csrf_field() }}
- {{ method_field('DELETE') }}
- <input type="hidden" name="state" value="{{ $request->state }}">
- <input type="hidden" name="client_id" value="{{ $client->id }}">
- <button class="btn btn-outline-danger font-weight-bold">Cancel</button>
- </form>
- </div>
- <hr>
- <p class="mb-0 text-center small text-muted">Click <a href="{{ route('logout') }}" class="font-weight-bold" onclick="event.preventDefault();document.getElementById('logout_auth').submit();">here</a> to log out of this account.</p>
- <form id="logout_auth" action="{{ route('logout') }}" method="POST" style="display: none;">
- @csrf
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|