diff --git a/apps/user/forms.py b/apps/user/forms.py index 2f75ef68..f2933c70 100644 --- a/apps/user/forms.py +++ b/apps/user/forms.py @@ -54,3 +54,11 @@ class UserEditForm(forms.ModelForm): class WithdrawalForm(forms.Form): amount = forms.DecimalField(required=True, min_value=2000) card = CreditCardField(required=True) + + +class AuthorRequesForm(forms.Form): + first_name = forms.CharField() + last_name = forms.CharField() + email = forms.CharField() + about = forms.CharField() + facebook = forms.URLField(required=False) diff --git a/apps/user/templates/user/become-author.html b/apps/user/templates/user/become-author.html new file mode 100644 index 00000000..bc08345c --- /dev/null +++ b/apps/user/templates/user/become-author.html @@ -0,0 +1,61 @@ +{% extends "templates/lilcity/index.html" %} {% load static %} {% block content %} +