Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6016307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:57:49+00:00 2026-05-23T02:57:49+00:00

We have a Django application that requires a specific level of password complexity. We

  • 0

We have a Django application that requires a specific level of password complexity. We currently enforce this via client-side JavaScript which can easily be defeated by someone who is appropriately motivated.

I cannot seem to find any specific information about setting up server-side password strength validation using the django contrib built in views. Before I go about re-inventing the wheel, is there a proper way to handle this requirement?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:57:50+00:00Added an answer on May 23, 2026 at 2:57 am

    I also went with a custom form for this. In urls.py specify your custom form:

    (r'^change_password/$', 'django.contrib.auth.views.password_change',
         {'password_change_form': ValidatingPasswordChangeForm}),
    

    Inherit from PasswordChangeForm and implement validation:

    from django import forms
    from django.contrib import auth
    
    class ValidatingPasswordChangeForm(auth.forms.PasswordChangeForm):
        MIN_LENGTH = 8
    
        def clean_new_password1(self):
            password1 = self.cleaned_data.get('new_password1')
    
            # At least MIN_LENGTH long
            if len(password1) < self.MIN_LENGTH:
                raise forms.ValidationError("The new password must be at least %d characters long." % self.MIN_LENGTH)
    
            # At least one letter and one non-letter
            first_isalpha = password1[0].isalpha()
            if all(c.isalpha() == first_isalpha for c in password1):
                raise forms.ValidationError("The new password must contain at least one letter and at least one digit or" \
                                            " punctuation character.")
    
            # ... any other validation you want ...
    
            return password1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that uses Django 1.3 installed in python's site-packages. I want
I'm new to Django, but the application that I have in mind might end
I have a web application build in Django + Python that interact with web
I have inherited a large Django application and it features this idiom in the
I have a python/django application that runs on the google app engine. My views.py
I have a Django application where users have additional data. That data is collected
I have a Django application that have a lot of images items that have
In my Django application I have Guest user accounts that are created for all
I have a Django application that defines a one-to-many model relationship. The models look
I have a django application that I'd like to add some rest interfaces to.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.