@{
var loginProviders = Context.GetOwinContext().Authentication.GetExternalAuthenticationTypes();
if (loginProviders.Count() == 0)
{
There are no external authentication services configured. See this article
for details on setting up this ASP.NET application to support logging in via external services.
@foreach (AuthenticationDescription p in loginProviders) { }