Create new project

This commit is contained in:
richard-dds
2018-08-21 14:21:03 -04:00
parent 7c21e64c51
commit 5203690748
4 changed files with 81 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
from flask_wtf import Form
from wtforms.fields import StringField, TextAreaField
class NewProjectForm(Form):
name = StringField(label="Project Name")
description = TextAreaField(label="Description")
environment_name = StringField(label="Environment Name")