Merge branch 'release' into dev

This commit is contained in:
Praburaj 2015-03-25 15:41:13 -07:00
commit 666b1a170d
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
@{
ViewBag.Title = "Manage your external logins";
@ -50,7 +50,7 @@
<p>
@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>
</div>