18 lines
714 B
HTML
18 lines
714 B
HTML
{% extends "base.xhtml" %}
|
|
{% from "macros/page-hero.xhtml" import page_hero %}
|
|
{% block content %}
|
|
{{ page_hero("Clusters", "Create cluster", "Legacy page from imported template pack. Branding updated for RoleForge.") }}
|
|
<section class="card">
|
|
<h2>Cluster Configuration</h2>
|
|
<form id="cluster-config-form" class="form-modern">
|
|
<div id="cluster-schema-fields"></div>
|
|
<div class="form-actions">
|
|
<button id="cluster-dry-run-btn" type="button" class="btn-muted">Dry Run</button>
|
|
<button type="submit">Create Cluster</button>
|
|
</div>
|
|
</form>
|
|
<pre id="cluster-form-output" class="form-output"></pre>
|
|
<pre id="cluster-dry-run-output" class="form-output"></pre>
|
|
</section>
|
|
{% endblock %}
|