From 5ac74ddd6cfbc1b0fbbcc05eb719fda04de40756 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 21 Sep 2022 11:59:25 +0400 Subject: [PATCH] Add guide on basics of authentication --- content/guides.json | 10 +++ content/guides/basics-of-authentication.md | 83 ++++++++++++++++++++++ content/videos/basics-of-authentication.md | 1 + 3 files changed, 94 insertions(+) create mode 100644 content/guides/basics-of-authentication.md diff --git a/content/guides.json b/content/guides.json index c91044e3e..d548a6b98 100644 --- a/content/guides.json +++ b/content/guides.json @@ -1,4 +1,14 @@ [ + { + "id": "basics-of-authentication", + "title": "Basics of Authentication", + "description": "Learn the basics of Authentication and Authorization", + "isNew": true, + "type": "textual", + "authorUsername": "kamranahmedse", + "updatedAt": "2022-09-21T19:59:14.191Z", + "createdAt": "2022-09-21T19:59:14.191Z" + }, { "id": "avoid-render-blocking-javascript-with-async-defer", "title": "Async and Defer Script Loading", diff --git a/content/guides/basics-of-authentication.md b/content/guides/basics-of-authentication.md new file mode 100644 index 000000000..49b6b00dc --- /dev/null +++ b/content/guides/basics-of-authentication.md @@ -0,0 +1,83 @@ +Our last video series was about data structures. We looked at the most common data structures, their use cases, pros and cons, and the different operations you could perform on each data structure. + +Today, we are kicking off a similar series for Authentication strategies where we will discuss everything you need to know about authentication and authentication strategies. + +In this guide today will be talking about what authentication is, and we will cover some terminology that will help us later in the series. You can watch the video below or continue reading this guide. + +