Login

Email Auth

Author:
petzah
Posted:
April 26, 2014
Language:
Python
Version:
1.6
Score:
0 (after 0 ratings)

Yet another authentication by email address. This one is quick and dirty as we are saving email address in both Username and Email fields. For proper way how to deal with it see

https://docs.djangoproject.com/en/1.6/topics/auth/customizing/#auth-custom-user

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# forms.py:

from django.contrib.auth.forms import UserCreationForm
from django.core.validators import validate_email
from django import forms

class UserRegisterForm(UserCreationForm):
    # we are using email as username so override label and validators
    username = forms.CharField(
        label = "Email:",
        max_length = 30,
        required = True,
        validators=[validate_email],
    )
# ====================================================
# views.py:

from django.views.generic.edit import FormView
class UserRegister(FormView):
    template_name = 'form_general.html'
    form_class = UserRegisterForm
    success_url = '/user/'

    def form_valid(self, form):
        # we are using email as username so let's copy it also to email field
        user = form.save(commit=False)
        user.email = user.username
        user.save()
        return super(UserRegister, self).form_valid(form)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

tgandor (on May 11, 2014):

30 characters is quite short for an e-mail address. I have a similar hack, and the first thing I installed was the 'longerusername' application.

#

Please login first before commenting.