Add projects to the system

This commit is contained in:
2021-12-27 18:48:38 +02:00
parent d8bf6dcafb
commit d590ae0179
9 changed files with 389 additions and 2 deletions

View 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