├── README.md ├── db.sqlite3 ├── manage.py ├── otp_app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── signals.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_otptoken.py │ ├── 0003_alter_otptoken_otp_code.py │ ├── 0004_alter_otptoken_otp_code_and_more.py │ ├── 0005_alter_otptoken_otp_code.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ ├── 0002_otptoken.cpython-39.pyc │ │ ├── 0003_alter_otptoken_otp_code.cpython-39.pyc │ │ ├── 0004_alter_otptoken_otp_code_and_more.cpython-39.pyc │ │ ├── 0005_alter_otptoken_otp_code.cpython-39.pyc │ │ └── __init__.cpython-39.pyc ├── models.py ├── signals.py ├── templates │ ├── base.html │ ├── index.html │ ├── login.html │ ├── resend_otp.html │ ├── signup.html │ └── verify_token.html ├── tests.py ├── urls.py └── views.py └── otp_validation ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── settings.cpython-39.pyc ├── urls.cpython-39.pyc └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/manage.py -------------------------------------------------------------------------------- /otp_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otp_app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/signals.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/signals.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/admin.py -------------------------------------------------------------------------------- /otp_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/apps.py -------------------------------------------------------------------------------- /otp_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/forms.py -------------------------------------------------------------------------------- /otp_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /otp_app/migrations/0002_otptoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/0002_otptoken.py -------------------------------------------------------------------------------- /otp_app/migrations/0003_alter_otptoken_otp_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/0003_alter_otptoken_otp_code.py -------------------------------------------------------------------------------- /otp_app/migrations/0004_alter_otptoken_otp_code_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/0004_alter_otptoken_otp_code_and_more.py -------------------------------------------------------------------------------- /otp_app/migrations/0005_alter_otptoken_otp_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/0005_alter_otptoken_otp_code.py -------------------------------------------------------------------------------- /otp_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/0002_otptoken.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/0002_otptoken.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/0003_alter_otptoken_otp_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/0003_alter_otptoken_otp_code.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/0004_alter_otptoken_otp_code_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/0004_alter_otptoken_otp_code_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/0005_alter_otptoken_otp_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/0005_alter_otptoken_otp_code.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /otp_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/models.py -------------------------------------------------------------------------------- /otp_app/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/signals.py -------------------------------------------------------------------------------- /otp_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/base.html -------------------------------------------------------------------------------- /otp_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/index.html -------------------------------------------------------------------------------- /otp_app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/login.html -------------------------------------------------------------------------------- /otp_app/templates/resend_otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/resend_otp.html -------------------------------------------------------------------------------- /otp_app/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/signup.html -------------------------------------------------------------------------------- /otp_app/templates/verify_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/templates/verify_token.html -------------------------------------------------------------------------------- /otp_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/tests.py -------------------------------------------------------------------------------- /otp_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/urls.py -------------------------------------------------------------------------------- /otp_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_app/views.py -------------------------------------------------------------------------------- /otp_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otp_validation/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /otp_validation/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /otp_validation/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /otp_validation/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /otp_validation/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/asgi.py -------------------------------------------------------------------------------- /otp_validation/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/settings.py -------------------------------------------------------------------------------- /otp_validation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/urls.py -------------------------------------------------------------------------------- /otp_validation/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithClinton/email_verification_django/HEAD/otp_validation/wsgi.py --------------------------------------------------------------------------------