11 lines
415 B
Python
11 lines
415 B
Python
|
from envelope.forms import ContactForm
|
||
|
from crispy_forms.helper import FormHelper
|
||
|
from crispy_forms.layout import Submit
|
||
|
|
||
|
|
||
|
class ContactForm(ContactForm):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(ContactForm, self).__init__(*args, **kwargs)
|
||
|
self.helper = FormHelper()
|
||
|
self.helper.add_input(Submit('submit', 'Submit',
|
||
|
css_class='btn-lg pull-right'))
|