Home / File/ login.html — flask Source File

login.html — flask Source File

Architecture documentation for login.html, a html file in the flask codebase.

Entity Profile

Source Code

{% extends 'base.html' %}

{% block header %}
  <h1>{% block title %}Log In{% endblock %}</h1>
{% endblock %}

{% block content %}
  <form method="post">
    <label for="username">Username</label>
    <input name="username" id="username" required>
    <label for="password">Password</label>
    <input type="password" name="password" id="password" required>
    <input type="submit" value="Log In">
  </form>
{% endblock %}

Frequently Asked Questions

What does login.html do?
login.html is a source file in the flask codebase, written in html.
Where is login.html in the architecture?
login.html is located at examples/tutorial/flaskr/templates/auth/login.html (directory: examples/tutorial/flaskr/templates/auth).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free