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: 3 months ago
JSON representation
How to Signup User and Send Confirmation Email in Django
- Host: GitHub
- URL: https://github.com/studygyaan/how-to-signup-user-and-send-confirmation-email-in-django
- Owner: studygyaan
- Created: 2019-07-16T07:31:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T20:34:00.000Z (about 2 years ago)
- Last Synced: 2025-03-06T00:02:10.733Z (4 months ago)
- Topics: django, django-signup, python
- Language: JavaScript
- Homepage: https://studygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in-django
- Size: 556 KB
- Stars: 12
- Watchers: 2
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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/