From f0434e0116f1b95305ee557c451a888788a7ed15 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 5 Dec 2024 12:49:16 -0800 Subject: [PATCH] Fix typo --- docs/docs/user-guides/build-your-app/add-users.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/user-guides/build-your-app/add-users.md b/docs/docs/user-guides/build-your-app/add-users.md index 4568ddb..f112b9a 100644 --- a/docs/docs/user-guides/build-your-app/add-users.md +++ b/docs/docs/user-guides/build-your-app/add-users.md @@ -9,7 +9,7 @@ In this guide, we'll cover the most popular and simple way to create user accoun ## Username and password -Allowing your users to create accounts in your application using a username and password is pretty universal. Implementing this system requires using all 3 components of the MVC framework: creating a database model to store usernames and password hashes, controllers to process signup and login requests, and views to serve signup and login forms. +Allowing your users to create accounts in your application using a username and password is pretty universal. Implementing this system requires using all 3 components of the MVC framework: creating a database model to store usernames and password hashes, controllers to process sign up and login requests, and views to serve sign up and login forms. Rwf supports all three components natively.