2021-07-28 02:15:48 +03:00

9 lines
250 B
Python

from django import forms
class GithubForm(forms.Form):
search_field = forms.CharField(max_length=20, required=True,
help_text='search github stars',
label='github_search',)