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.
18 lines
676 B
18 lines
676 B
extends ../layouts/main
|
|
block content
|
|
|
|
form(method="POST", action="/admin/core-node/connect").uk-form
|
|
.uk-card.uk-card-default.uk-card-small
|
|
.uk-card-header
|
|
h1.uk-card-title Connect to New Core
|
|
|
|
.uk-card-body
|
|
.uk-margin
|
|
label(for="host").uk-form-label Address
|
|
input(id="host", name="host", placeholder="Enter host name or address", required).uk-input
|
|
.uk-margin
|
|
label(for="port").uk-form-label Port Number
|
|
input(id="port", name="port", min="1", max="65535", step="1", value="4200", required).uk-input
|
|
|
|
.uk-card-footer
|
|
button(type="submit").uk-button.uk-button-primary Send Request
|