{% extends '__layout__.html' %} {% block title %}Create Group{% endblock %} {% block head %} {% endblock %} {% block content %}

Create Group

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %}
Group Name
Group Description
Group Icon

File must be less than 2MB, Has to be a PNG, Must have a 1:1 ratio and be between 128x128 to 1024x1024

{% endblock %}