26 lines
846 B
Plaintext
26 lines
846 B
Plaintext
extends layout
|
|
|
|
block content
|
|
.layout-centered
|
|
h1= title
|
|
p To query and get content using the APIs, client applications need to authenticate with both the Space ID and an access token.
|
|
|
|
form(action=`/settings` method="POST" class="form")
|
|
.form-item
|
|
label(for="space") Space ID
|
|
input(type="text" name="space" value=settings.space)
|
|
.help-text Some help text we still need to define
|
|
|
|
.form-item
|
|
label(for="cda") Delivery API key
|
|
input(type="text" name="cda" value=settings.cda)
|
|
.help-text Some help text we still need to define
|
|
|
|
.form-item
|
|
label(for="cpa") Preview API key
|
|
input(type="text" name="cpa" value=settings.cpa)
|
|
.help-text Some help text we still need to define
|
|
|
|
.form-item
|
|
input.cta(type="submit" value="Load settings")
|