JOIN_FORM_HTML = r"""{% extends "base.html" %} {% block title %}BuffTEKS VIP Server Access — {{ brand }}{% endblock %} {% block content %}

BuffTEKS VIP Server Access

Hi {{ user.username }}! The BuffTEKS VIP Server is our private collaboration space for active members.

To gain access, you’ll: 1) join BuffTEKS, 2) perform the Git Commit Ritual, and 3) commit to a project team.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for cat,msg in messages %}
{{ msg }}
{% endfor %}
{% endif %} {% endwith %}
$ git add me
$ git commit -m "{{ commit_message or 'chore: joined BuffTEKS, ready to contribute' }}"
$ git push origin greatness
  
{% endblock %} """