Remove BetaAccess related forms
This commit is contained in:
parent
3cdf915b86
commit
a90bc3b3ce
1 changed files with 1 additions and 18 deletions
|
@ -1,26 +1,9 @@
|
|||
from django import forms
|
||||
|
||||
from .models import BetaAccess, ContactUs
|
||||
|
||||
|
||||
class BetaAccessForm(forms.ModelForm):
|
||||
email = forms.CharField(widget=forms.EmailInput())
|
||||
|
||||
class Meta:
|
||||
fields = ['name', 'email']
|
||||
model = BetaAccess
|
||||
from .models import ContactUs
|
||||
|
||||
|
||||
class ContactForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
fields = ['name', 'email', 'message']
|
||||
model = ContactUs
|
||||
|
||||
|
||||
# class BetaAccessVMForm(forms.ModelForm):
|
||||
# type = forms.CharField(widget=forms.EmailInput())
|
||||
|
||||
# class Meta:
|
||||
# fields = ['email']
|
||||
# model = BetaAccessVM
|
||||
|
|
Loading…
Reference in a new issue