30 lines
1.4 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "general.html" %}
{% block title %}Создание пользователя{% endblock %}
{% block header %}Создание пользователя{% endblock %}
{% block content %}
<div class="card">
<h2>Создание новой команды</h2>
<form action="account_created_many" method="POST">
<div class="form-group">
<label for="username">Логин</label>
<input type="text" id="username" name="username" placeholder="Логин, например, ahmet" required>
</div>
<div class="form-group">
<label for="team_name">Команда</label>
<input type="text" id="team_name" name="team_name" placeholder="Короткое название команды, например, Физтех.Бегемотики" required>
</div>
<div class="form-group">
<label for="location">Позиция (стол, секция, пр.)</label>
<input type="text" id="location" name="location" placeholder="Метка, например, '1р1с' (т.е., 1 ряд 1 стол)" required>
</div>
<div class="form-group">
<label for="password">Пароль</label>
<input type="text" id="password" name="password" required>
</div>
<button type="submit" class="button">Создать пользователя</button>
</form>
</div>
{% endblock %}