Fixing the namespace in the sample view page

This commit is contained in:
Praburaj 2015-03-25 14:22:25 -07:00
parent 92101641a7
commit e23365f757
1 changed files with 2 additions and 2 deletions

View File

@ -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>