-class RegistrationForm(UserCreationForm):
- def as_ul(self):
- """Returns this form rendered as HTML <li>s -- excluding the <ul></ul>."""
- return self._html_output(
- u'<li>%(errors)s%(label)s %(field)s<span class="help-text">%(help_text)s</span></li>', u'<li>%s</li>',
- '</li>', u' %s', False)
-
-
-class LoginForm(AuthenticationForm):
- def as_ul(self):
- """Returns this form rendered as HTML <li>s -- excluding the <ul></ul>."""
- return self._html_output(
- u'<li>%(errors)s%(label)s %(field)s<span class="help-text">%(help_text)s</span></li>', u'<li>%s</li>',
- '</li>', u' %s', False)
-
-