-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f99df2
commit 4e08e20
Showing
62 changed files
with
39,544 additions
and
57 deletions.
There are no files selected for viewing
15 changes: 14 additions & 1 deletion
15
Michaelsoft.BodyGuard.Client/Areas/Authentication/Pages/Login.cshtml
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,5 +1,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authentication.Pages.Login | ||
@{ | ||
await Html.RenderPartialAsync("_AuthenticationForm", Model.AuthenticationForm); | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Login</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_AuthenticationForm", Model.AuthenticationForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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
12 changes: 11 additions & 1 deletion
12
Michaelsoft.BodyGuard.Client/Areas/Authentication/Pages/Logout.cshtml
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,4 +1,14 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authentication.Pages.Logout | ||
@{ | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<p>Logout executed!</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<p>Logout executed!</p> |
15 changes: 14 additions & 1 deletion
15
Michaelsoft.BodyGuard.Client/Areas/Authentication/Pages/PasswordRecovery.cshtml
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,5 +1,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authentication.Pages.PasswordRecovery | ||
@{ | ||
await Html.RenderPartialAsync("_PasswordRecoveryForm", Model.PasswordRecoveryForm); | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Password Recovery</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_PasswordRecoveryForm", Model.PasswordRecoveryForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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
17 changes: 15 additions & 2 deletions
17
Michaelsoft.BodyGuard.Client/Areas/Authentication/Pages/Registration.cshtml
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,5 +1,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authentication.Pages.Registration | ||
@{ | ||
await Html.RenderPartialAsync("_RegistrationForm", Model.RegistrationForm); | ||
} | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Registration</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_RegistrationForm", Model.RegistrationForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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
14 changes: 13 additions & 1 deletion
14
Michaelsoft.BodyGuard.Client/Areas/Authentication/Pages/ValidateRecovery.cshtml
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,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authentication.Pages.ValidateRecovery | ||
@{ | ||
await Html.RenderPartialAsync("_ValidateRecoveryForm", Model.ValidateRecoveryForm); | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Validate Password Recovery</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_ValidateRecoveryForm", Model.ValidateRecoveryForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
15 changes: 14 additions & 1 deletion
15
Michaelsoft.BodyGuard.Client/Areas/Authorization/Pages/ManageRoles.cshtml
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,5 +1,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Authorization.Pages.ManageRoles | ||
@{ | ||
await Html.RenderPartialAsync("_ManageRolesForm", Model.ManageRolesForm); | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Manage Roles</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_ManageRolesForm", Model.ManageRolesForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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
13 changes: 11 additions & 2 deletions
13
Michaelsoft.BodyGuard.Client/Areas/Result/Pages/Failure.cshtml
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,5 +1,14 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Result.Pages.Failure | ||
@{ | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<h4>Failure</h4> | ||
<partial name="_Message" for="Message"/> | ||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Failure</h1> | ||
<partial name="_Message" for="Message"/> | ||
</div> | ||
</div> | ||
</div> |
13 changes: 11 additions & 2 deletions
13
Michaelsoft.BodyGuard.Client/Areas/Result/Pages/Success.cshtml
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,5 +1,14 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.Result.Pages.Success | ||
@{ | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<h4>Success</h4> | ||
<partial name="_Message" for="Message"/> | ||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Success</h1> | ||
<partial name="_Message" for="Message"/> | ||
</div> | ||
</div> | ||
</div> |
18 changes: 15 additions & 3 deletions
18
Michaelsoft.BodyGuard.Client/Areas/User/Pages/Delete.cshtml
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,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.User.Pages.Delete | ||
|
||
@{ | ||
await Html.RenderPartialAsync("_DeleteForm", Model.DeleteForm); | ||
} | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Delete User</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_DeleteForm", Model.DeleteForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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,7 +1,17 @@ | ||
@page | ||
@using Michaelsoft.BodyGuard.Client.Models.Lists | ||
@model Michaelsoft.BodyGuard.Client.Areas.User.Pages.List | ||
|
||
@{ | ||
await Html.RenderPartialAsync("_UserList", new UserList()); | ||
} | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>User List</h1> | ||
@{ | ||
await Html.RenderPartialAsync("_UserList", new UserList()); | ||
} | ||
</div> | ||
</div> | ||
</div> |
18 changes: 15 additions & 3 deletions
18
Michaelsoft.BodyGuard.Client/Areas/User/Pages/Update.cshtml
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,18 @@ | ||
@page | ||
@model Michaelsoft.BodyGuard.Client.Areas.User.Pages.Update | ||
|
||
@{ | ||
await Html.RenderPartialAsync("_UpdateForm", Model.UpdateForm); | ||
} | ||
Layout = "_BodyGuardLayout"; | ||
} | ||
|
||
<div class="body-guard_client-form_outer"> | ||
<div class="body-guard_client-form_middle"> | ||
<div class="body-guard_client-form_inner"> | ||
<h1>Update User</h1> | ||
<div class="body-guard_client-form_container"> | ||
@{ | ||
await Html.RenderPartialAsync("_UpdateForm", Model.UpdateForm); | ||
} | ||
</div> | ||
</div> | ||
</div> | ||
</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
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
Oops, something went wrong.