TorrentIndexer/templates/search.html

27 lines
858 B
HTML
Raw Normal View History

2015-02-05 13:50:44 +01:00
<!--
vim: ts=2 noexpandtab
-->
{% extends "index.html" %}
2017-12-29 08:03:17 +01:00
{% block title %}{{ super() }} - {{ _("Search") }}{% endblock%}
{% set active_page = "search" %}
{% block content %}
2015-02-06 22:03:42 +01:00
<link href="{{ url_for("static", filename="css/search.css") }}" rel="stylesheet">
<div class="search_container">
2015-02-06 22:03:42 +01:00
<img class="logo" src="{{ url_for("static", filename="images/Pirates.svg") }}" />
<form action="search" >
<div class="form-group">
<div class="input-group search-box">
2017-12-29 08:03:17 +01:00
<input type="text" name="q" class="form-control" placeholder="{{ _("Seach for") }}" aria-describedby="basic-addon2">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">
<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
2017-12-29 08:03:17 +01:00
{{ _("Search!") }}
</button>
</span>
</div>
</div>
2015-02-06 22:03:42 +01:00
</form>
</div>
{% endblock content%}