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 %} +