Projet

Général

Profil

Télécharger (330 octets) Statistiques
| Branche: | Tag: | Révision:

root / uauth / forms.py @ master

1
from django import forms
2
from django.utils.translation import ugettext_lazy as _
3

    
4
class GuestLoginForm(forms.Form):
5
    login = forms.CharField(label=_('Login'))
6
    password = forms.CharField(label=_('Password'), widget=forms.PasswordInput)
7

    
8

    
9
class VoucherLoginForm(forms.Form):
10
    voucher = forms.CharField(label=_('Voucher'))
(5-5/11)