Files
RoleForge/app/templates/cluster-create.xhtml
Sergey Antropoff 1d2301fb09 first commit
2026-04-30 08:59:31 +03:00

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 %}