You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>library</title>
|
|
|
|
<link rel="stylesheet" href="{{url_for('static', filename='style_default.css')}}">
|
|
|
|
<script src="{{url_for('static', filename='addnew_panel.js')}}"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
hello here a list of:
|
|
|
|
<button id="new" onclick="openPanel()">add new element</button>
|
|
|
|
<table>
|
|
|
|
{% for row in reading_list%}
|
|
|
|
<tr>
|
|
|
|
<td>{{row['author']| safe}}</td>
|
|
|
|
<td>{{row['title']|safe}}</td>
|
|
|
|
<td>{{row['description']|safe}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="formPanel" id="formPanel">
|
|
|
|
<button onclick="closePanel()">X</button>
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
<input type="text" name="author" placeholder="Author"/>
|
|
|
|
<input type="text" name="title" placeholder="Title"/>
|
|
|
|
<textarea name="description" cols="30" rows="10" placeholder="description"></textarea>
|
|
|
|
<input type="submit" value="Add" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|