updated digiserver 2

This commit is contained in:
ske087
2025-11-12 16:07:03 +02:00
parent 2deb398fd8
commit e5a00d19a5
44 changed files with 2656 additions and 230 deletions

View File

@@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block title %}Create Group - DigiServer v2{% endblock %}
{% block content %}
<h1>Create Group</h1>
<div class="card">
<form method="POST">
<div style="margin-bottom: 1rem;">
<label>Group Name</label>
<input type="text" name="name" required style="width: 100%; padding: 0.5rem;">
</div>
<div style="margin-bottom: 1rem;">
<label>Description (optional)</label>
<textarea name="description" rows="3" style="width: 100%; padding: 0.5rem;"></textarea>
</div>
<button type="submit" class="btn btn-success">Create Group</button>
<a href="{{ url_for('groups.groups_list') }}" class="btn">Cancel</a>
</form>
</div>
{% endblock %}