failmap/admin

View on GitHub
websecmap/game/templates/game/team.html

Summary

Maintainability
Test Coverage
{% extends 'game/base.html' %}
{% load crispy_forms_tags %}

{% block content %}
    <style>
    input[type="radio"] {
      margin-right: 6px;
    }
    </style>
    <h1>Select your team</h1>
    <p>Feel free to join, mix and match teams on the go. But please don't leak the secret for your team. If you do,
    other teams might submit bogus urls which will be rejected and will ruin your score.</p>

    <p>
        Your Current Team: {{ team.name }}
    </p>

    <form method="POST" class="uniForm">{% csrf_token %}
        {{ form | crispy }}
        <br />
        <button type="submit" class="save btn btn-lg btn-primary">GAME ON!</button>
    </form>
{% endblock %}