mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-12-26 00:43:46 +00:00
9 lines
185 B
Python
9 lines
185 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
from django import forms
|
||
|
|
||
|
|
||
|
class PassForm(forms.Form):
|
||
|
passwd = forms.CharField(label=u'Nouveau mot de passe', max_length=255, widget=forms.PasswordInput)
|