2019-04-07 19:06:16 +00:00
|
|
|
<!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('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>
|
2019-11-28 06:14:42 +00:00
|
|
|
<p class="text-center h3 font-weight-light mb-3">Authorize {{ $client->name }}</p>
|
2019-10-02 19:25:35 +00:00
|
|
|
<div class="card card-default shadow-none border">
|
2019-04-07 19:06:16 +00:00
|
|
|
<div class="card-body">
|
2019-11-28 06:14:42 +00:00
|
|
|
<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>
|
2019-04-07 19:06:16 +00:00
|
|
|
@if (count($scopes) > 0)
|
|
|
|
<div class="scopes">
|
2019-11-28 06:14:42 +00:00
|
|
|
@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
|
2019-04-07 19:06:16 +00:00
|
|
|
</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>
|
2019-10-02 19:25:35 +00:00
|
|
|
<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>
|
2019-04-07 19:06:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|