This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first stab at upating to latest bootstrap and jquery * update nav, home, and account views * consent, diagnostics, and grants * device flows * review feedback changes
- Loading branch information
1 parent
31f4afe
commit 7eda5c9
Showing
155 changed files
with
49,898 additions
and
14,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
|
||
<div class="container"> | ||
<div class="page-header"> | ||
<div class="lead"> | ||
<h1>Access Denied</h1> | ||
<p>You do not have access to that resource.</p> | ||
</div> | ||
|
||
<p>You do not have access to that resource.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
@model LogoutViewModel | ||
|
||
<div class="logout-page"> | ||
<div class="page-header"> | ||
<div class="lead"> | ||
<h1>Logout</h1> | ||
<p>Would you like to logut of IdentityServer?</p> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<p>Would you like to logout of IdentityServer?</p> | ||
<form asp-action="Logout"> | ||
<input type="hidden" name="logoutId" value="@Model.LogoutId" /> | ||
<fieldset> | ||
<div class="form-group"> | ||
<button class="btn btn-primary">Yes</button> | ||
</div> | ||
</fieldset> | ||
</form> | ||
<form asp-action="Logout"> | ||
<input type="hidden" name="logoutId" value="@Model.LogoutId" /> | ||
<div class="form-group"> | ||
<button class="btn btn-primary">Yes</button> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,104 @@ | ||
@model ConsentViewModel | ||
|
||
<div class="page-consent"> | ||
<div class="row page-header"> | ||
<div class="col-sm-10"> | ||
@if (Model.ClientLogoUrl != null) | ||
{ | ||
<div class="client-logo"><img src="@Model.ClientLogoUrl"></div> | ||
} | ||
<h1> | ||
@Model.ClientName | ||
<small>is requesting your permission</small> | ||
</h1> | ||
</div> | ||
<div class="lead"> | ||
@if (Model.ClientLogoUrl != null) | ||
{ | ||
<div class="client-logo"><img src="@Model.ClientLogoUrl"></div> | ||
} | ||
<h1> | ||
@Model.ClientName | ||
<small class="text-muted">is requesting your permission</small> | ||
</h1> | ||
<p>Uncheck the permissions you do not wish to grant.</p> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-8"> | ||
<partial name="_ValidationSummary" /> | ||
|
||
<form asp-action="Index" class="consent-form"> | ||
<input type="hidden" asp-for="ReturnUrl" /> | ||
</div> | ||
</div> | ||
|
||
<div>Uncheck the permissions you do not wish to grant.</div> | ||
|
||
<form asp-action="Index"> | ||
<input type="hidden" asp-for="ReturnUrl" /> | ||
<div class="row"> | ||
<div class="col-sm-8"> | ||
@if (Model.IdentityScopes.Any()) | ||
{ | ||
<div class="panel panel-default consent-buttons"> | ||
<div class="panel-heading"> | ||
<span class="glyphicon glyphicon-user"></span> | ||
Personal Information | ||
<div class="form-group"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<span class="glyphicon glyphicon-user"></span> | ||
Personal Information | ||
</div> | ||
<ul class="list-group list-group-flush"> | ||
@foreach (var scope in Model.IdentityScopes) | ||
{ | ||
<partial name="_ScopeListItem" model="@scope" /> | ||
} | ||
</ul> | ||
</div> | ||
<ul class="list-group"> | ||
@foreach (var scope in Model.IdentityScopes) | ||
{ | ||
<partial name="_ScopeListItem" model="@scope" /> | ||
} | ||
</ul> | ||
</div> | ||
} | ||
|
||
@if (Model.ApiScopes.Any()) | ||
{ | ||
<div class="panel panel-default"> | ||
<div class="panel-heading"> | ||
<span class="glyphicon glyphicon-tasks"></span> | ||
Application Access | ||
<div class="form-group"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<span class="glyphicon glyphicon-tasks"></span> | ||
Application Access | ||
</div> | ||
<ul class="list-group list-group-flush"> | ||
@foreach (var scope in Model.ApiScopes) | ||
{ | ||
<partial name="_ScopeListItem" model="scope" /> | ||
} | ||
</ul> | ||
</div> | ||
<ul class="list-group"> | ||
@foreach (var scope in Model.ApiScopes) | ||
{ | ||
<partial name="_ScopeListItem" model="scope" /> | ||
} | ||
</ul> | ||
</div> | ||
} | ||
|
||
<div class="panel panel-default"> | ||
<div class="panel-heading"> | ||
<span class="glyphicon glyphicon-tasks"></span> | ||
Device Description | ||
</div> | ||
<div class="panel-body"> | ||
<input class="form-control" placeholder="Description or name of device" asp-for="Description" autofocus> | ||
<div class="form-group"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<span class="glyphicon glyphicon-tasks"></span> | ||
Description | ||
</div> | ||
<div class="card-body"> | ||
<input class="form-control" placeholder="Description or name of device" asp-for="Description" autofocus> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@if (Model.AllowRememberConsent) | ||
{ | ||
<div class="consent-remember"> | ||
<label> | ||
<input class="consent-scopecheck" asp-for="RememberConsent" /> | ||
<strong>Remember My Decision</strong> | ||
</label> | ||
<div class="form-group"> | ||
<div class="form-check"> | ||
<input class="form-check-input" asp-for="RememberConsent"> | ||
<label class="form-check-label" asp-for="RememberConsent"> | ||
<strong>Remember My Decision</strong> | ||
</label> | ||
</div> | ||
</div> | ||
} | ||
</div> | ||
</div> | ||
|
||
<div class="consent-buttons"> | ||
<button name="button" value="yes" class="btn btn-primary" autofocus>Yes, Allow</button> | ||
<button name="button" value="no" class="btn">No, Do Not Allow</button> | ||
@if (Model.ClientUrl != null) | ||
{ | ||
<a class="pull-right btn btn-default" target="_blank" href="@Model.ClientUrl"> | ||
<span class="glyphicon glyphicon-info-sign"></span> | ||
<strong>@Model.ClientName</strong> | ||
</a> | ||
} | ||
</div> | ||
</form> | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<button name="button" value="yes" class="btn btn-primary" autofocus>Yes, Allow</button> | ||
<button name="button" value="no" class="btn btn-secondary">No, Do Not Allow</button> | ||
</div> | ||
<div class="col-sm-4 col-lg-auto"> | ||
@if (Model.ClientUrl != null) | ||
{ | ||
<a class="btn btn-outline-info" href="@Model.ClientUrl"> | ||
<span class="glyphicon glyphicon-info-sign"></span> | ||
<strong>@Model.ClientName</strong> | ||
</a> | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<div class="page-header"> | ||
<h1> | ||
Success | ||
<small>You have successfully authorized the device</small> | ||
</h1> | ||
</div> | ||
|
||
<div class="page-device-success"> | ||
<div class="lead"> | ||
<h1>Success</h1> | ||
<p>You have successfully authorized the device</p> | ||
</div> | ||
</div> |
Oops, something went wrong.