mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
304 B
9 lines
304 B
# -*- 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)
|
|
|