Files
mantra.press/server/views/project-form.pug

18 lines
732 B
Plaintext
Raw Normal View History

2021-12-27 18:48:38 +02:00
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