intra_max_chatbot/admin/templates/orgs/create.html
2026-03-26 00:25:37 +03:00

17 lines
659 B
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 "base.html" %}
{% block title %}Новая организация{% endblock %}
{% block content %}
<h1>Новая организация</h1>
<div class="card" style="max-width:480px">
<form action="/admin/orgs/create" method="post">
<div class="form-row">
<label>Название организации</label>
<input type="text" name="name" required placeholder="ООО Ромашка">
</div>
<div style="display:flex;gap:8px">
<button class="btn btn-primary" type="submit">Создать</button>
<a href="/admin/orgs" class="btn btn-secondary">Отмена</a>
</div>
</form>
</div>
{% endblock %}