Mistake: I believe you have mistake in code in the Quickstart tutorial for python.
Description:
- In the HTML file, line 11, 15 states:
<p><a href="/docs/logout">Logout</a></p>
…
<p><a href="/docs/login">Login</a></p>
but I believe it should be:
<p><a href="logout">Logout</a></p>
…
<p><a href="login">Login</a></p>
- In the section: Add Templates you have following text:
Create a new sub-directory in your project folder namedtemplates, and create two files within:dashboard.htmlandhome.html. You can paste the content from the two fields below into those files, respectfully:
It sounds to me that we should expect two HTML examples: home.html and dashboard.html, but there is only home.html file.