From b886014087f6a509c4fe0998fec2a7931a783f64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 1 Sep 2020 10:26:07 +0300 Subject: [PATCH] Resolved #5053: Improvement suggestion for the "Implementing Passwordless Authentication in ASP.NET Core Identity" article --- .../2020-08-07-Passwordless-Authentication/POST.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2020-08-07-Passwordless-Authentication/POST.md b/docs/en/Community-Articles/2020-08-07-Passwordless-Authentication/POST.md index 1b7cef0867..077dd17466 100644 --- a/docs/en/Community-Articles/2020-08-07-Passwordless-Authentication/POST.md +++ b/docs/en/Community-Articles/2020-08-07-Passwordless-Authentication/POST.md @@ -2,7 +2,9 @@ ## Introduction -To allow a user login with a magic URL, you need to implement a custom token provider. In this tutorial, we will show you how to add a custom token provider to authenticate a user with a link, instead of entering a password. +In this tutorial, we will show you how to add a custom token provider to authenticate a user with a link, instead of entering a password. + +This can be especially useful if you want to make someone login to the application with your user, without sharing your secret password. The generated link will be for a single use. ### Source Code