FrankProjects/UltimateWarfare

View on GitHub
templates/game/federation/leaveFederation.html.twig

Summary

Maintainability
Test Coverage
{% extends 'game.html.twig' %}

{% block title %}Ultimate Warfare - Leave Federation{% endblock title %}

{% block content %}
    <form action="{{ path('Game/Federation/Leave') }}" method="post">

        <table class="table text-center">
            <tr class="tabletop">
                <td><b>Leave Federation</b></td>
            </tr>
            <tr>
                <td>
                    <br />Are you sure you want to do this?<br /><br />
                    <br />
                    <input class="btn btn-primary" type="submit" name="submit" value="Leave">
                </td>
            </tr>
        </table>
    </form>
{% endblock %}