18 lines
732 B
Plaintext
18 lines
732 B
Plaintext
|
|
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
|