Skip to content

Instantly share code, notes, and snippets.

@taranjeet
Last active June 12, 2018 05:54
Show Gist options
  • Save taranjeet/dca781f2726abaa15a59a079b6e0744c to your computer and use it in GitHub Desktop.
Save taranjeet/dca781f2726abaa15a59a079b6e0744c to your computer and use it in GitHub Desktop.
Django Library: Book Normal Form
from django import forms
class BookForm(forms.Form):
name = forms.CharField(
label='Book Name',
widget=forms.TextInput(attrs={
'class': 'form-control',
'placeholder': 'Enter Book Name here'
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment