└── easy sign up ├── db.sqlite3 ├── down ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── static └── style.css └── website ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── admin.cpython-310.pyc ├── apps.cpython-310.pyc ├── form.cpython-310.pyc ├── models.cpython-310.pyc ├── urls.cpython-310.pyc └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── form.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── models.py ├── templates ├── index.html ├── signup.html └── succes.html ├── tests.py ├── urls.py └── views.py /easy sign up/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/db.sqlite3 -------------------------------------------------------------------------------- /easy sign up/down/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy sign up/down/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/down/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/down/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/down/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/down/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/asgi.py -------------------------------------------------------------------------------- /easy sign up/down/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/settings.py -------------------------------------------------------------------------------- /easy sign up/down/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/urls.py -------------------------------------------------------------------------------- /easy sign up/down/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/down/wsgi.py -------------------------------------------------------------------------------- /easy sign up/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/manage.py -------------------------------------------------------------------------------- /easy sign up/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/static/style.css -------------------------------------------------------------------------------- /easy sign up/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/form.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/form.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/admin.py -------------------------------------------------------------------------------- /easy sign up/website/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/apps.py -------------------------------------------------------------------------------- /easy sign up/website/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/form.py -------------------------------------------------------------------------------- /easy sign up/website/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/migrations/0001_initial.py -------------------------------------------------------------------------------- /easy sign up/website/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy sign up/website/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /easy sign up/website/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/models.py -------------------------------------------------------------------------------- /easy sign up/website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/templates/index.html -------------------------------------------------------------------------------- /easy sign up/website/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/templates/signup.html -------------------------------------------------------------------------------- /easy sign up/website/templates/succes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/templates/succes.html -------------------------------------------------------------------------------- /easy sign up/website/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/tests.py -------------------------------------------------------------------------------- /easy sign up/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/urls.py -------------------------------------------------------------------------------- /easy sign up/website/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackendPython/django-sign-up-new/HEAD/easy sign up/website/views.py --------------------------------------------------------------------------------