diff options
Diffstat (limited to 'chimere/forms.py')
-rw-r--r-- | chimere/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/forms.py b/chimere/forms.py index 597975d..d02d6ea 100644 --- a/chimere/forms.py +++ b/chimere/forms.py @@ -93,11 +93,11 @@ class OSMForm(forms.Form): """ OSM export form """ - email = forms.EmailField(label=_("OSM user")) + username = forms.EmailField(label=_("OSM user")) password = forms.CharField(label=_(u"Password"), widget=forms.PasswordInput(render_value=False)) # API URL are hardcoded: the day the API change Chimère will need - # adaptations + # adaptations not only on this portion... api = forms.ChoiceField(label=_(u"API"), choices=(('', '--'), ('api06.dev.openstreetmap.org', |