throw away this stupid bootstrap shit and build it with plain HTML

This commit is contained in:
sqozz
2015-02-09 00:13:32 +01:00
parent 71858c6020
commit 90bd3ea1f2
19 changed files with 534 additions and 227 deletions

View File

@ -2,8 +2,12 @@
vim: ts=2 noexpandtab
-->
{% extends "index.html" %}
{% block title %}{{ super() }} - Create{% endblock%}
{% set active_page = "create" %}
{% block title %}{{ super() }} - Search{% endblock%}
{% set active_page = "search" %}
{% block content %}
<p>CREATE</p>
<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>
{% endblock content%}