flask-server/kinolist/templates/pages/manage.html
2024-10-08 19:26:26 +02:00

32 lines
895 B
HTML

{% extends 'base.html' %}
{% block header %}
<h2>{% block title%}Home{% endblock title %}</h2>
{% endblock header %}
{% block navigation %}
<li><a href="{{ url_for('pages.logout') }}">Logout</a></li>
{% endblock navigation %}
{% block content %}
<div class="new-entry">
<fieldset>
<legend>Select a type of new entry:</legend>
<select name="choice" id="choice">
<option value="title">Title</option>
<option value="imdbid">ImdbID</option>
<option value="blank">Blank entry</option>
</select>
<input class="large-input" id="input-text" type="text">
</fieldset>
<button id="newEntry" onclick="newEntry()">New entry</button>
</div>
<input id="upload" type="file" accept="image/png, image/jpeg" onchange="newFile(this)" hidden>
{% include('_movies.html') %}
{% endblock content %}
{% block script %}
{% include('pages/manage.js') %}
{% endblock script %}