22 lines
802 B
Twig
22 lines
802 B
Twig
{% extends "base.html.twig" %}
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="text-center mt-5">
|
|
<form action="/tournament" method="post">
|
|
<fieldset>
|
|
<legend>Create tournament</legend>
|
|
<div class="mb-3">
|
|
<label for="title" class="form-label">Tournament title</label>
|
|
<input type="text" id="title" name="title" class="form-control" placeholder="Enter your tournament title">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Generate tournament</button>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<div class="text-center mt-5">
|
|
tournament list
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|