FIXME SR is private

This commit is contained in:
Paul Schneider 2023-03-19 17:57:55 +00:00
commit 123283f277
576 changed files with 75350 additions and 13070 deletions

View file

@ -1,5 +1,4 @@
@model ManageLoginsViewModel
@using Microsoft.AspNet.Http.Authentication
@{
ViewData["Title"] = "Manage your external logins";
}
@ -38,18 +37,3 @@
</tbody>
</table>
}
@if (Model.OtherLogins.Count > 0)
{
<h4>Add another service to log in.</h4>
<hr />
<form asp-controller="Manage" asp-action="LinkLogin" method="post" class="form-horizontal" role="form">
<div id="socialLoginList">
<p>
@foreach (var provider in Model.OtherLogins)
{
<button type="submit" class="btn btn-default" name="provider" value="@provider.AuthenticationScheme" title="Log in using your @provider.DisplayName account">@provider.AuthenticationScheme</button>
}
</p>
</div>
</form>
}

View file

@ -1,7 +1,5 @@
@model Yavsc.ViewModels.Manage.ProfileEMailUsageViewModel
<form asp-action="ProfileEMailUsage" >
<div class="form-group">
@ -20,10 +18,3 @@
</div>
</div>
</form>
<div>
<a asp-action="Index">@SR["Back to List"]</a>
</div>
</body>
</html>