Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/quickstart/webapp/python/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -----
Expand Down