Fixing the namespace in the sample view page
This commit is contained in:
parent
92101641a7
commit
e23365f757
|
|
@ -1,4 +1,4 @@
|
||||||
@using Microsoft.AspNet.Http.Security;
|
@using Microsoft.AspNet.Http.Authentication;
|
||||||
@model MusicStore.Models.ManageLoginsViewModel
|
@model MusicStore.Models.ManageLoginsViewModel
|
||||||
@{
|
@{
|
||||||
ViewBag.Title = "Manage your external logins";
|
ViewBag.Title = "Manage your external logins";
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
<p>
|
<p>
|
||||||
@foreach (AuthenticationDescription p in Model.OtherLogins)
|
@foreach (AuthenticationDescription p in Model.OtherLogins)
|
||||||
{
|
{
|
||||||
<button type="submit" class="btn btn-default" id="@p.AuthenticationType" name="provider" value="@p.AuthenticationType" title="Log in using your @p.Caption account">@p.AuthenticationType</button>
|
<button type="submit" class="btn btn-default" id="@p.AuthenticationScheme" name="provider" value="@p.AuthenticationScheme" title="Log in using your @p.Caption account">@p.AuthenticationScheme</button>
|
||||||
}
|
}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue