8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-28 10:04:04 +00:00
re2o/users/forms.py
2016-07-02 00:35:44 +02:00

10 lines
304 B
Python

# -*- coding: utf-8 -*-
from django import forms
class PassForm(forms.Form):
passwd1 = forms.CharField(label=u'Nouveau mot de passe', max_length=255, widget=forms.PasswordInput)
passwd2 = forms.CharField(label=u'Saisir à nouveau le mot de passe', max_length=255, widget=forms.PasswordInput)