mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-03 15:39:38 +00:00
2c4e7a1cea
Changed the search parameter from POST to GET. Also, adapted the Baggy theme.
23 lines
No EOL
694 B
Twig
23 lines
No EOL
694 B
Twig
<div id="search-form" class="messages info">
|
|
<form method="get" action="index.php">
|
|
<p>
|
|
<input type="hidden" name="view" value="search"></input>
|
|
<label>{% trans "Search" %}</label> : <input type="text" placeholder="{% trans "Enter your search here" %}" name="search" />
|
|
<input type="submit" value="{% trans "Search" %} !"></input>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
|
|
$("#search-form").hide();
|
|
|
|
$("#search").click(function(){
|
|
$("#search-form").toggle();
|
|
$("#search").toggleClass("current");
|
|
$("#search-arrow").toggleClass("arrow-down");
|
|
});
|
|
|
|
|
|
});
|
|
</script> |