Manage.cshtml
674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@model ControlPanel.Models.LocalPasswordModel
@{
ViewBag.Title = "Управление учетной записью";
}
@Styles.Render("~/Content/css")
<div style="display: table; margin: 0 auto; text-align: center;">
<hgroup class="title">
<h1>@ViewBag.Title.</h1>
</hgroup>
<p class="message-success">@ViewBag.StatusMessage</p>
<p>Вы вошли как <strong>@User.Identity.Name</strong>.</p>
@if (ViewBag.HasLocalPassword)
{
@Html.Partial("_ChangePasswordPartial")
}
else
{
@Html.Partial("_SetPasswordPartial")
}
</div>
<section id="externalLogins">
</section>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}