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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
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.