This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/core/forms/users.py

43 lines
1.2 KiB
Python
Raw Normal View History

"""passbook core user forms"""
from django import forms
2019-02-23 19:56:41 +00:00
from django.forms import ValidationError
from django.utils.translation import gettext_lazy as _
from passbook.core.models import User
class UserDetailForm(forms.ModelForm):
"""Update User Details"""
class Meta:
model = User
2019-12-31 11:51:16 +00:00
fields = ["username", "name", "email"]
widgets = {"name": forms.TextInput}
2019-02-23 19:56:41 +00:00
class PasswordChangeForm(forms.Form):
"""Form to update password"""
2019-12-31 11:51:16 +00:00
password = forms.CharField(
label=_("Password"),
widget=forms.PasswordInput(
attrs={"placeholder": _("New Password"), "autocomplete": "new-password"}
),
)
password_repeat = forms.CharField(
label=_("Repeat Password"),
widget=forms.PasswordInput(
attrs={"placeholder": _("Repeat Password"), "autocomplete": "new-password"}
),
)
2019-02-23 19:56:41 +00:00
def clean_password_repeat(self):
"""Check if Password adheres to filter and if passwords matche"""
2019-12-31 11:51:16 +00:00
password = self.cleaned_data.get("password")
password_repeat = self.cleaned_data.get("password_repeat")
2019-02-23 19:56:41 +00:00
if password != password_repeat:
raise ValidationError(_("Passwords don't match"))
2019-12-31 11:51:16 +00:00
return self.cleaned_data.get("password_repeat")