mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-19 20:14:09 -08:00
c979779249
* Switched branch name to master * Production assets for better contrast in dark mode skins * Fixed #9115: Duplicate column name 'provider' (#9137) * Sigh. Real assets * fix blade templates with missing url() function wrapper for relative URLs * Develop to master (#9195) * Added saml custom setting retrieveParametersFromServer to enable fixing SLO issues with Azure AD (#9187) * [FIX] Lite test email won't use the mail component (#9092) * [FIX] Lite test email won't use the mail component * Revert "[FIX] Lite test email won't use the mail component" This reverts commit6dab9aa1a8
. * Fix check for snipeSettings * Remove random text from message template * Revert "Fix check for snipeSettings" This reverts commit887dcc7bbc
. * Fix test notification with setupCompleted Co-authored-by: johnson-yi <63399474+johnson-yi@users.noreply.github.com> Co-authored-by: Oliver Walerys <owalerys@users.noreply.github.com> * Changed branch from develop to master * fix blade templates with missing url() function wrapper for relative URLs * Re-apply patch against develop * Rebase against develop Co-authored-by: snipe <snipe@snipe.net> Co-authored-by: Kevin Köllmann <mail@kevinkoellmann.de> Co-authored-by: johnson-yi <63399474+johnson-yi@users.noreply.github.com> Co-authored-by: Oliver Walerys <owalerys@users.noreply.github.com>
91 lines
3.2 KiB
PHP
91 lines
3.2 KiB
PHP
<!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>
|
|
|
|
{{-- stylesheets --}}
|
|
<link rel="stylesheet" href="{{ url(mix('css/all.css')) }}">
|
|
<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">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
Authorization Request
|
|
</div>
|
|
<div class="panel-body">
|
|
<!-- Introduction -->
|
|
<p><strong>{{ $client->name }}</strong> is requesting permission to access your account.</p>
|
|
|
|
<!-- Scope List -->
|
|
@if (count($scopes) > 0)
|
|
<div class="scopes">
|
|
<p><strong>This application will be able to:</strong></p>
|
|
|
|
<ul>
|
|
@foreach ($scopes as $scope)
|
|
<li>{{ $scope->description }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="buttons">
|
|
<!-- Authorize Button -->
|
|
<form method="post" action="/oauth/authorize">
|
|
{{ 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 btn-approve">Authorize</button>
|
|
</form>
|
|
|
|
<!-- Cancel Button -->
|
|
<form method="post" action="/oauth/authorize">
|
|
{{ 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-danger">Cancel</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|