29 lines
1.4 KiB
HTML
29 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Settings • {{ server.display_name }} • Keywarden{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="space-y-6">
|
|
{% include "servers/_header.html" %}
|
|
|
|
<section class="rounded-2xl border border-gray-200 bg-white p-6 shadow-sm">
|
|
<div class="flex flex-wrap items-start justify-between gap-4">
|
|
<div>
|
|
<h2 class="text-lg font-semibold text-gray-900">Settings</h2>
|
|
<p class="mt-1 text-sm text-gray-500">Manage server-level access policies and metadata.</p>
|
|
</div>
|
|
<span class="inline-flex items-center rounded-full bg-gray-100 px-2.5 py-1 text-xs font-semibold text-gray-700">Placeholder</span>
|
|
</div>
|
|
<div class="mt-5 rounded-xl border border-dashed border-gray-200 bg-gray-50 p-6 text-center">
|
|
<div class="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-blue-50 text-blue-700">
|
|
<svg class="h-6 w-6" aria-hidden="true" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 6v6l4 2" />
|
|
<circle cx="12" cy="12" r="9" stroke-width="1.5"></circle>
|
|
</svg>
|
|
</div>
|
|
<p class="mt-3 text-sm text-gray-600">Settings will appear here as server options are added.</p>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|