mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-06 09:34:00 +00:00
15 lines
250 B
Python
15 lines
250 B
Python
from django import forms
|
|
|
|
|
|
class AddContactForm(forms.Form):
|
|
"""
|
|
Form for adding a contact.
|
|
|
|
"""
|
|
|
|
email = forms.EmailField()
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(AddContactForm, self).__init__(*args, **kwargs)
|
|
|