From b61692bfe0254d87fa51fea20c5b15d5a404c762 Mon Sep 17 00:00:00 2001 From: Tercio da Silva Ferreira Date: Fri, 22 May 2026 22:36:49 -0300 Subject: [PATCH] sexta --- .gitignore | 5 ++++- accounts/apps.py | 7 +++++++ templates/registration/signup_form.html | 17 +++++++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 accounts/apps.py create mode 100644 templates/registration/signup_form.html diff --git a/.gitignore b/.gitignore index 18bfee6..bc454e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ -.venv +.venv/ +venv/ +**/__pycache__ +staticfiles/ diff --git a/accounts/apps.py b/accounts/apps.py new file mode 100644 index 0000000..c69f96c --- /dev/null +++ b/accounts/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class AccountsConfig(AppConfig): + name = 'accounts' + + diff --git a/templates/registration/signup_form.html b/templates/registration/signup_form.html new file mode 100644 index 0000000..203cea7 --- /dev/null +++ b/templates/registration/signup_form.html @@ -0,0 +1,17 @@ +{% extends '_layout1' %} + +{% block contents %} +
+
Registro de usuário
+ /
+
+
+ {% csrf taken %} + {{ form.as_p }} +
+ +
+
+ +{% endblock %} \ No newline at end of file