You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
902 B
22 lines
902 B
extends ../layout/main
|
|
block view-content
|
|
|
|
section.uk-section.uk-section-default.uk-section-small
|
|
.uk-container
|
|
|
|
.uk-margin
|
|
form(method="POST", action="/client").uk-form
|
|
.uk-card.uk-card-default.uk-card-small
|
|
.uk-card-header
|
|
h1.uk-card-title New Client
|
|
|
|
.uk-card-body
|
|
.uk-margin
|
|
label(for="name").uk-form-label Client name
|
|
input(id="name", name="name", type="text", placeholder="Enter client name").uk-input
|
|
.uk-margin
|
|
label(for="description").uk-form-label Client description
|
|
textarea(id="name", name="description", rows=4, placeholder="Enter client description").uk-textarea.uk-resize-vertical
|
|
|
|
.uk-card-footer.uk-flex.uk-flex-right
|
|
button(type="submit").uk-button.uk-button-default.uk-border-rounded Create Client
|