Create new project
This commit is contained in:
9
atst/forms/new_project.py
Normal file
9
atst/forms/new_project.py
Normal 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")
|
Reference in New Issue
Block a user