@ViewBag.StatusMessage
10 |You're logged in as @User.Identity.GetUserName().
13 |There are no external authentication providers configured.
27 |@account.LoginProvider | 12 |
13 | @if (ViewBag.ShowRemoveButton)
14 | {
15 | using (Html.BeginForm("Disassociate", "Account"))
16 | {
17 | @Html.AntiForgeryToken()
18 |
19 | @Html.Hidden("loginProvider", account.LoginProvider)
20 | @Html.Hidden("providerKey", account.ProviderKey)
21 |
22 |
23 | }
24 | }
25 | else
26 | {
27 | @:
28 | }
29 | |
30 |
40 | @Html.ActionLink("Back to List", "Index") 41 |
42 | -------------------------------------------------------------------------------- /src/Fooidity.Management.Web/Views/Organization/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable9 | Organizations contain applications and can be associated with multiple users. Associated users can create applications 10 | and manage the access keys for those applications. 11 |
12 |13 | @Html.ActionLink("Create New", "Create", new { @class="btn btn-primary" }) 14 |
15 |18 | @Html.DisplayNameFor(model => model.Name) 19 | | 20 |21 | |
---|---|
26 | @Html.DisplayFor(modelItem => item.Name) 27 | | 28 |29 | @Html.ActionLink("Details", "Details", new { id=item.Id }) 30 | | 31 |