notes/templates/add_list.html

16 lines
541 B
HTML

{% extends "base.html" %}
{% block title %}Pievienot piezīmju sarakstu{% endblock %}
{% block content %}
<h1 class="mb-4">Pievienot piezīmju sarakstu</h1>
<form method="post">
<div class="mb-3">
<label for="noteListName" class="form-label">Nosaukums</label>
<input type="text" class="form-control" id="noteListName" name="name" required>
</div>
<button type="submit" class="btn btn-primary">Pievienot</button>
<a href="{{ url_for('index') }}" class="btn btn-secondary">Atpakaļ</a>
</form>
{% endblock %}