mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Submit button label changed in project creation form
This commit is contained in:
parent
f4da4d9a33
commit
4e24edd5c9
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ class ProjectForm(Form):
|
||||||
id = TextField("Project identifier", validators=[Required()])
|
id = TextField("Project identifier", validators=[Required()])
|
||||||
password = PasswordField("Password", validators=[Required()])
|
password = PasswordField("Password", validators=[Required()])
|
||||||
contact_email = TextField("Email", validators=[Required(), Email()])
|
contact_email = TextField("Email", validators=[Required(), Email()])
|
||||||
submit = SubmitField("Get in")
|
submit = SubmitField("Create the project")
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
"""Create a new project with the information given by this form.
|
"""Create a new project with the information given by this form.
|
||||||
|
|
Loading…
Reference in a new issue