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/register.html

11 lines
206 B
HTML
Raw Normal View History

2023-12-18 21:00:37 +01:00
{% extends "facturio/base.html" %}
2024-01-29 21:52:57 +01:00
{% load i18n %}
2023-12-19 13:49:34 +01:00
{% load crispy_forms_tags %}
2024-01-29 21:52:57 +01:00
{% block title %}{% trans "Register" %}{% endblock %}
2023-12-19 13:49:34 +01:00
2023-12-18 21:00:37 +01:00
{% block content %}
2023-12-19 13:49:34 +01:00
{% crispy form form.helper %}
2024-02-03 22:07:20 +01:00
{% endblock %}