hide snippets pass room list in search page

modified:   app.py
	modified:   templates/base.html
	modified:   templates/search.html
This commit is contained in:
Russell Ballestrini 2024-07-04 11:31:38 -04:00
parent 926262cdaa
commit db3c15ea0d
3 changed files with 12 additions and 4 deletions

View file

@ -171,7 +171,7 @@
<!-- Search form -->
<div id="search-form" style="width: 90%;">
<form action="/search" method="get">
<input type="text" id="search-keywords" name="keywords" placeholder="Search for keywords..." style="width: 100%;" value="{{ keywords }}">
<input type="text" id="search-keywords" name="keywords" placeholder="Search for keywords..." style="width: 100%; text-align: center;" value="{{ keywords }}">
<input type="hidden" id="username" name="username" value="{{ username }}">
</form>
</div>