initial add
This commit is contained in:
29
Fab2ApprovalSystem/Views/Account/Manage.cshtml
Normal file
29
Fab2ApprovalSystem/Views/Account/Manage.cshtml
Normal file
@ -0,0 +1,29 @@
|
||||
@using Fab2ApprovalSystem.Models;
|
||||
@using Microsoft.AspNet.Identity;
|
||||
@{
|
||||
ViewBag.Title = "Manage Account";
|
||||
}
|
||||
|
||||
<h2>@ViewBag.Title.</h2>
|
||||
|
||||
<p class="text-success">@ViewBag.StatusMessage</p>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@if (ViewBag.HasLocalPassword)
|
||||
{
|
||||
@Html.Partial("_ChangePasswordPartial")
|
||||
}
|
||||
else
|
||||
{
|
||||
@Html.Partial("_SetPasswordPartial")
|
||||
}
|
||||
|
||||
<section id="externalLogins">
|
||||
@Html.Action("RemoveAccountList")
|
||||
@Html.Partial("_ExternalLoginsListPartial", new { Action = "LinkLogin", ReturnUrl = ViewBag.ReturnUrl })
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
@section Scripts {
|
||||
@Scripts.Render("~/bundles/jqueryval")
|
||||
}
|
Reference in New Issue
Block a user