summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/account/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'pharos-dashboard/account/forms.py')
-rw-r--r--pharos-dashboard/account/forms.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pharos-dashboard/account/forms.py b/pharos-dashboard/account/forms.py
index 14f11cd..92c55d8 100644
--- a/pharos-dashboard/account/forms.py
+++ b/pharos-dashboard/account/forms.py
@@ -9,6 +9,4 @@ class AccountSettingsForm(forms.ModelForm):
model = UserProfile
fields = ['company', 'ssh_public_key', 'pgp_public_key', 'timezone']
- ssh_public_key = forms.CharField(max_length=2048, widget=forms.Textarea)
- pgp_public_key = forms.CharField(max_length=2048, widget=forms.Textarea)
timezone = forms.ChoiceField(choices=[(x, x) for x in pytz.common_timezones], initial='UTC')