Add New Club
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{{ form.hidden_tag() }}
{{ form.hockey_club.label(class="form-label") }} {{ form.hockey_club(class="form-control") }} {% if form.hockey_club.errors %}
{% for error in form.hockey_club.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.logo_url.label(class="form-label") }} {{ form.logo_url(class="form-control") }} {% if form.logo_url.errors %}
{% for error in form.logo_url.errors %}
{{ error }}
{% endfor %}
{% endif %}
Enter the full URL to the club's logo image
{{ form.cancel(class="btn btn-secondary me-md-2") }} {{ form.save_club(class="btn btn-primary") }}
Back to Club Management