Skip to content
Permalink
4ad10aa704
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (14 sloc) 814 Bytes
from django import forms
class PangramForm(forms.Form):
pangram = forms.CharField(required=True, widget=forms.TextInput(
attrs={
'placeholder': 'Enter above text here for mood test',
'autocomplete': "off"
}
))
mood = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))
kd = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))
dukl = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))
ddkl = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))
udkl = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))
uukl = forms.CharField(required=False, widget=forms.TextInput(attrs={'type': "hidden"}))