├── static └── css │ ├── main.css │ └── bootstrap.css ├── authentication ├── __init__.py ├── tests │ ├── __init__.py │ └── test_authentication_view.py ├── migrations │ └── __init__.py ├── models.py ├── admin.py ├── apps.py ├── utils.py ├── urls.py └── views.py ├── djangoauthapp ├── __init__.py ├── wsgi.py ├── urls.py └── settings.py ├── templates ├── auth │ ├── activate_failed.html │ ├── activate.html │ ├── reset-user-password.html │ ├── request-reset-email.html │ ├── login.html │ ├── set-new-password.html │ └── register.html ├── partials │ └── _flash_messages.html ├── home.html └── base.html ├── .env_sample_file ├── Pipfile ├── .travis.yml ├── README.md ├── manage.py ├── .gitignore └── Pipfile.lock /static/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoauthapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /authentication/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /templates/auth/activate_failed.html: -------------------------------------------------------------------------------- 1 |
OR
50 |69 | Need an account? Register 70 |
71 |78 | Forgot Password? Reset it here 79 |
80 |OR
29 |80 | Already have an account?Login 81 |
82 |88 | Forgot Password? Reset it here 89 |
90 |OR
30 |99 | Already have an account?Login 100 |
101 |107 | Forgot Password? Reset it here 108 |
109 |