aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 11:09:21 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 11:09:21 +0200
commitc8122e1981527a716639561cc3f880764f06387b (patch)
tree56c58229ba294f89870b027dc18585cc19d2dc54 /src/web/forms.py
parentImproved layout of the profile page. (diff)
downloadnewspipe-c8122e1981527a716639561cc3f880764f06387b.tar.gz
newspipe-c8122e1981527a716639561cc3f880764f06387b.tar.bz2
newspipe-c8122e1981527a716639561cc3f880764f06387b.zip
The user can now add its twitter page.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index f651c189..69abac46 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -157,6 +157,7 @@ class ProfileForm(Form):
password = PasswordField(lazy_gettext("Password"))
password_conf = PasswordField(lazy_gettext("Password Confirmation"))
webpage = URLField(lazy_gettext("Webpage"))
+ twitter = URLField(lazy_gettext("Twitter"))
is_public_profile = BooleanField(lazy_gettext("Public profile"),
default=True)
submit = SubmitField(lazy_gettext("Save"))
bgstack15