This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/templates/account/login.html

10 lines
173 B
HTML
Raw Normal View History

2023-12-18 21:00:37 +01:00
{% extends "facturio/base.html" %}
2023-12-19 13:49:34 +01:00
{% load crispy_forms_tags %}
2023-12-18 21:00:37 +01:00
{% block title %}Login{% endblock %}
{% block content %}
2023-12-19 13:49:34 +01:00
{% crispy form form.helper %}
2023-12-18 21:00:37 +01:00
{% endblock %}