Posts

Showing posts with the label Html5

Activating user account with an email

Django registration with confirmation email When we signup on website its send a email for confirmation to active an account. Or sometime need to change password or change email of an account. Here i will show you how to send a confirmation email when someone register on your web app that deploy on Django. I will discuss about the normal way to deploy this. But there other option also to deploy this. Like  django-registration ,  django-registration-redux ,  django-allauth  application. Those application made this very easy, also integrated with authentication, account management, social account authentication etc. Lets start I have a project called  mysite  and an app called  blog . There is my project directory 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 django_blog blog admin .py forms .py models .py urls .py views .py templates signup .html acc_active_email .html django_blog settings .py urls .py manage .py