diff --git a/aspnetcore/security/authentication/sociallogins.md b/aspnetcore/security/authentication/sociallogins.md
index f66e968548..38baa32198 100644
--- a/aspnetcore/security/authentication/sociallogins.md
+++ b/aspnetcore/security/authentication/sociallogins.md
@@ -19,10 +19,7 @@ This tutorial will demonstrate how to build an ASP.NET Core app that enables use
[Facebook](facebook-logins.md), [Twitter](twitter-logins.md), [Google](google-logins.md), and [Microsoft](microsoft-logins.md) providers are available out-of-the-box and will be covered in the following sections. Many third-party packages such as the ones by [aspnet-contrib](https://www.nuget.org/packages?q=owners%3Aaspnet-contrib+title%3AOAuth) facilitate the use of other providers not covered here, including GitHub, LinkedIn, Reddit, and so on.
-
-
-
-
+![image](sociallogins/_static/social.png)
Enabling users to login with their existing credentials is convenient for the users and shifts many of the complexities of managing the sign-in process onto a third party. For examples of how social logins can drive traffic and customer conversions, see case studies by [Facebook](https://developers.facebook.com/case-studies) and [Twitter](https://developers.facebook.com/case-studies/).
@@ -73,61 +70,8 @@ services.AddMvc(options =>
The template used to create the sample project in this tutorial has code in `Startup.cs` which reads the configuration values from a secret store:
-````csharp
-if (env.IsDevelopment())
-{
- builder.AddUserSecrets();
-}
-````
-
-* Install the [Secret Manager tool](../app-secrets.md).
-
-* Set the Facebook AppId:
-
-
-
- ````
- dotnet user-secrets set Authentication:Facebook:AppId
- ````
-
-* Set the Facebook AppSecret:
-
-
-
- ````
- dotnet user-secrets set Authentication:Facebook:AppSecret
- ````
-
-The following code reads the configuration values stored by the [Secret Manager](../app-secrets.md#security-app-secrets).
-
[!code-csharp[Main](../../common/samples/WebApplication1/Startup.cs?highlight=11&range=20-36)]
-## Enable Facebook middleware
-
-**Note:** You will need to use NuGet to install the Microsoft.AspNetCore.Authentication.Facebook package if it hasn't already been installed.
-
-Add the Facebook middleware in the `Configure` method in `Startup`:
-
-[!code-csharp[Main](./sociallogins/sample/Startup.cs?highlight=21,22,23,24,25&range=64-96)]
-
-## Login with Facebook
-
-Run your application and click Login. You will see an option for Facebook.
-
-![image](sociallogins/_static/FBLogin1.PNG)
-
-When you click on Facebook, you will be redirected to Facebook for authentication.
-
-![image](sociallogins/_static/FBLogin2.PNG)
-
-Once you enter your Facebook credentials, then you will be redirected back to the Web site where you can set your email.
-
-You are now logged in using your Facebook credentials.
-
-![image](sociallogins/_static/DoneFacebook.PNG)
-
-## Optionally set password
-
As a best practice, it is not recommended to store the secrets in a configuration file in the application since they can be checked into source control which may be publicly accessible.
The **SecretManager** tool will store sensitive application settings in the user profile folder on the local machine. These settings are then seamlessly merged with settings from all other sources during application startup.
diff --git a/aspnetcore/security/authentication/sociallogins/_static/facebook.svg b/aspnetcore/security/authentication/sociallogins/_static/facebook.svg
deleted file mode 100644
index 4f21bcc867..0000000000
--- a/aspnetcore/security/authentication/sociallogins/_static/facebook.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
diff --git a/aspnetcore/security/authentication/sociallogins/_static/google.svg b/aspnetcore/security/authentication/sociallogins/_static/google.svg
deleted file mode 100644
index 247363f937..0000000000
--- a/aspnetcore/security/authentication/sociallogins/_static/google.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
diff --git a/aspnetcore/security/authentication/sociallogins/_static/microsoft.svg b/aspnetcore/security/authentication/sociallogins/_static/microsoft.svg
deleted file mode 100644
index b913fc8b19..0000000000
--- a/aspnetcore/security/authentication/sociallogins/_static/microsoft.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
diff --git a/aspnetcore/security/authentication/sociallogins/_static/social.png b/aspnetcore/security/authentication/sociallogins/_static/social.png
new file mode 100644
index 0000000000..e7b1fabb2e
Binary files /dev/null and b/aspnetcore/security/authentication/sociallogins/_static/social.png differ
diff --git a/aspnetcore/security/authentication/sociallogins/_static/twitter.svg b/aspnetcore/security/authentication/sociallogins/_static/twitter.svg
deleted file mode 100644
index 134e93b9d9..0000000000
--- a/aspnetcore/security/authentication/sociallogins/_static/twitter.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
\ No newline at end of file