24 lines
440 B
HTML
24 lines
440 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="card col-md-10 col-10">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Добавить аудиторию</h5>
|
|
|
|
<form method='POST' action="/addaudtodb" class="card" >
|
|
<input type="text" class="form-control" name="auditory">
|
|
<button> Добавить</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%endblock%} |