2015-02-05 22:38:39 +01:00
|
|
|
<!--
|
|
|
|
vim: ts=2 noexpandtab
|
|
|
|
-->
|
|
|
|
{% extends "index.html" %}
|
2015-02-09 00:13:32 +01:00
|
|
|
{% block title %}{{ super() }} - Search{% endblock%}
|
|
|
|
{% set active_page = "search" %}
|
2015-02-05 22:38:39 +01:00
|
|
|
{% block content %}
|
2015-02-09 00:13:32 +01:00
|
|
|
<link href="{{ url_for("static", filename="css/search.css") }}" rel="stylesheet">
|
|
|
|
<form id="tfnewsearch" method="get" action="search">
|
|
|
|
<input type="text" class="tftextinput" name="torrent_name">
|
|
|
|
<input type="submit" value="{{ getLocalString("english", "search") }}" class="tfbutton">
|
|
|
|
</form>
|
2015-02-05 22:38:39 +01:00
|
|
|
{% endblock content%}
|