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.
11 lines
562 B
11 lines
562 B
extends ../layouts/main
|
|
block content
|
|
|
|
form(method="POST", action=`/admin/link/${link._id}`, onsubmit="return dtp.app.submitForm(event, 'update link');").uk-form
|
|
.uk-margin
|
|
label(for="label").uk-form-label Label
|
|
input(id="label", name="label", type="text", placeholder="Enter link label", value= link.label).uk-input
|
|
.uk-margin
|
|
label(for="href").uk-form-label URL
|
|
input(id="href", name="href", type="url", placeholder="Enter link URL", value= link.href).uk-input
|
|
button(type="submit").uk-button.uk-button-primary Update Link
|