Skip to content

Commit

Permalink
Merge c6d0354 into 86d78c5
Browse files Browse the repository at this point in the history
  • Loading branch information
bedros committed Dec 8, 2016
2 parents 86d78c5 + c6d0354 commit f697915
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion invitations/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ class InviteForm(forms.Form, CleanEmailMixin):
email = forms.EmailField(
label=_("E-mail"),
required=True,
widget=forms.TextInput(attrs={"type": "email", "size": "30"}))
widget=forms.TextInput(attrs={"type": "email", "size": "30"}, ),
initial=""
)

def save(self, email):
return Invitation.create(email=email)
Expand Down

0 comments on commit f697915

Please sign in to comment.