Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T21:57:44.000Z (over 2 years ago)
- Last Synced: 2023-03-04T03:09:45.517Z (over 1 year ago)
- Topics: django, django-signup, python
- Language: JavaScript
- Homepage: https://studygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in-django
- Size: 555 KB
- Stars: 12
- Watchers: 2
- Forks: 8
- Open Issues: 3
-
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/