Cutomizes the logout pages

This commit is contained in:
Vazhin Tayeb 2021-01-19 13:41:54 +03:00
parent 0f9e0e3ee4
commit 5c5cbd2f79
2 changed files with 6 additions and 6 deletions

View File

@ -7,10 +7,10 @@
<div class="logged-out-page"> <div class="logged-out-page">
<div> <div>
<h1> <h1 class="text-primary">
Logout Logout
</h1> </h1>
<h3 class="font-weight-light mt-3">You are now logged out</h3> <h4 class="font-weight-light mt-3">You are now logged out</h4>
</div> </div>
@if (Model.PostLogoutRedirectUri != null) @if (Model.PostLogoutRedirectUri != null)

View File

@ -2,14 +2,14 @@
<div class="logout-page"> <div class="logout-page">
<div class="lead"> <div class="lead">
<h1>Logout</h1> <h1 class="text-primary">Logout</h1>
<p>Would you like to logut of IdentityServer?</p> <h4 class="font-weight-light mt-3">Would you like to logout of the IdentityServer?</h4>
</div> </div>
<form asp-action="Logout"> <form asp-action="Logout">
<input type="hidden" name="logoutId" value="@Model.LogoutId" /> <input type="hidden" name="logoutId" value="@Model.LogoutId" />
<div class="form-group"> <div class="form-group">
<button class="btn btn-primary">Yes</button> <button class="btn btn-primary mt-4 px-4 font-weight-bold" style="font-size: 1.1rem;">Yes</button>
</div> </div>
</form> </form>
</div> </div>