tpdf/index.html

32 lines
926 B
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>
<div id="tpdfSearchDiv">
<h1>TPDF - Tellico Parser anD Finder</h1>
2018-10-20 16:46:05 +00:00
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">
</div>
</main>
2018-10-20 16:46:05 +00:00
</body>
</html>