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.
27 lines
1.6 KiB
27 lines
1.6 KiB
extends ../layouts/main
|
|
block content
|
|
|
|
form(method="POST", action="/admin/settings").uk-form
|
|
fieldset
|
|
legend Site Information
|
|
.uk-margin
|
|
label(for="name").uk-form-label Site name
|
|
input(id="name", name="name", type="text", maxlength="200", placeholder="Enter site name", value= site.name).uk-input
|
|
.uk-margin
|
|
label(for="description").uk-form-label Site description
|
|
input(id="description", name="description", type="text", maxlength="500", placeholder="Enter site description", value= site.description).uk-input
|
|
.uk-margin
|
|
label(for="company").uk-form-label Company name
|
|
input(id="company", name="company", type="text", maxlength="200", placeholder="Enter company name", value= site.company).uk-input
|
|
|
|
fieldset
|
|
legend Network Settings
|
|
p #{site.name} is capable of accepting Core Connect requests from other nodes, issuing them OAuth2 credentials, and offering their services to your node's members. These options control how the system will process these requests when received.
|
|
.uk-margin
|
|
label(for="network-policy").uk-form-label Constellation Policy
|
|
select(id="network-policy", name="networkPolicy").uk-select
|
|
option(value="open", selected= (site.networkPolicy === 'open')) Open (Auto-Accept)
|
|
option(value="controlled", selected= (site.networkPolicy === 'controlled')) Controlled (Approval Required)
|
|
option(value="closed", selected= (site.networkPolicy === 'closed')) Closed (Auto-Reject)
|
|
|
|
button(type="submit").uk-button.dtp-button-primary.uk-border-rounded Save Settings
|