Add projects to the system
This commit is contained in:
18
server/views/project-form.pug
Normal file
18
server/views/project-form.pug
Normal file
@@ -0,0 +1,18 @@
|
||||
extend templates/layout.pug
|
||||
|
||||
block content
|
||||
.container
|
||||
.center
|
||||
h1 Create Project
|
||||
|
||||
.row
|
||||
.col.s12
|
||||
form.row(action=`/projects/create`, method="post")
|
||||
.col.s12.input-field
|
||||
input#name(type="text", name="name", value=project.name)
|
||||
label(for="name") Project Name
|
||||
.col.s12.input-field
|
||||
input#description(type="text", name="description", value=project.description)
|
||||
label(for="description") Description
|
||||
.col.s12
|
||||
button.btn.black(type="submit") create project
|
||||
Reference in New Issue
Block a user