Project

General

Profile

Download (330 Bytes) Statistics
| Branch: | Tag: | Revision:

root / uauth / forms.py @ 64438aee

1 09d398ce Serghei MIHAI
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'))