From 5e713b312ef9b9408b61bea5c0a83b4e947ffa2d Mon Sep 17 00:00:00 2001 From: Axel Amoroso Carapinha Date: Wed, 12 Feb 2025 19:54:46 +0000 Subject: [PATCH] Update 01-login.md 1. Removed the mention to `dashboard.html` as `home.html` already helps to illustrate how this auth0 integration adds user login. 2. Changed "about" to "mentioned above" Apart from that, clear, concise and with a tip of humor, I liked it! --- articles/quickstart/webapp/python/01-login.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/quickstart/webapp/python/01-login.md b/articles/quickstart/webapp/python/01-login.md index 0a570d856c..11506c7f37 100644 --- a/articles/quickstart/webapp/python/01-login.md +++ b/articles/quickstart/webapp/python/01-login.md @@ -183,9 +183,9 @@ if __name__ == "__main__": ## Add templates -Now we just need to create the simple template files used in the routes about (during `render_template()` calls). +Now we just need to create the simple template file used in the routes mentioned above (during `render_template()` calls). -Create a new sub-directory in your project folder named `templates`, and create two files within: `dashboard.html` and `home.html`. You can paste the content from the two fields below into those files, respectfully: +Create a new sub-directory in your project folder named `templates`, and create a file within it called `home.html`. You can paste the content from the field below into that file: ```html # 📁 templates/home.html -----