Files
digiserver-v2/app/templates/groups/create_group.html
Quality App Developer a4262da7c9 chore: fix file permissions and ownership across project
- Changed ownership of all files to scheianu:scheianu
- Set directories to 755 permissions (rwxr-xr-x)
- Set files to 644 permissions (rw-r--r--)
- Made shell scripts executable (755)
- Allows development without requiring sudo for file modifications
- Improves development workflow and security
2026-01-15 22:39:51 +02:00

22 lines
756 B
HTML

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