tpdf/index.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2018-10-20 16:46:05 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" media="all" type="text/css" href="style.css" />
2018-12-22 15:23:27 +00:00
<script type="text/javascript" src="frontend/main.js"></script>
2018-10-20 16:46:05 +00:00
<title>TPDF - Tellico Parser anD Finder</title>
</head>
<body>
2018-12-22 17:38:12 +00:00
<header>
2018-12-22 17:49:27 +00:00
<img alt="[Logo]" src="frontend/tpdf-logo.png" />
TPDF - Tellico Parser anD Finder <small>by <a href="https://golem.linux.it/">GOLEM</a></small>
2018-12-22 17:38:12 +00:00
</header>
2018-10-20 16:46:05 +00:00
2018-12-22 17:38:12 +00:00
<div id="tpdfSearchDiv">
2018-11-24 15:10:41 +00:00
<form id="tpdfForm" action="main.py" method="get">
<label for="title">Title</label>
<input type="text" name="title" />
<label for="author">Author</label>
<input type="text" name="author" />
2018-10-20 16:46:05 +00:00
<input type="button" value="Submit" onclick="TPDF.submit();"/>
2018-12-22 15:23:27 +00:00
<input type="reset" value="Reset" />
</form>
</div>
<main>
<div id="tpdfOutput">
2018-12-22 18:05:49 +00:00
<span>&nbsp;</span>
</div>
</main>
2018-10-20 16:46:05 +00:00
</body>
</html>