Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/studygyaan/how-to-signup-user-and-send-confirmation-email-in-django

How to Signup User and Send Confirmation Email in Django
https://github.com/studygyaan/how-to-signup-user-and-send-confirmation-email-in-django

django django-signup python

Last synced: 10 days ago
JSON representation

How to Signup User and Send Confirmation Email in Django

Awesome Lists containing this project

README

        

# How to Signup User and Send Confirmation Email in Django

## Tutorial Link - https://studygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in-django

In this tutorial, you’ll learn how to create a Registration Form for User Signup. We’ll add more functionality by adding validation and sending a confirmation link on users’ email. With confirming account user cannot sign in. You can also find this tutorial code on GitHub.

### Setup
1. Create a folder and put all the files inside it.
2. Create a virtual environtment - `virtualenv env`
3. Activate VirtualENV - `source env/bin/activate`
4. Run requirements.txt - `pip3 install -r requirements.txt`
5. Run the Application - `python3 manage.py runserver`
6. Go to - http://localhost:8000/