소스 검색

[enh] landing page updates

asciimoo 11 년 전
부모
커밋
bf2847f4e7
1개의 변경된 파일7개의 추가작업 그리고 5개의 파일을 삭제
  1. 7
    5
      searx/templates/index.html

+ 7
- 5
searx/templates/index.html 파일 보기

@@ -1,8 +1,10 @@
1 1
 {% extends "base.html" %}
2 2
 {% block content %}
3
-<h1>searx</h1>
4
-<form method="post" action="">
5
-    <input type="text" name="q" />
6
-    <input type="submit" value="search" />
7
-</form>
3
+<div class="center">
4
+    <h1>searx</h1>
5
+    <form method="post" action="">
6
+        <input type="text" name="q" tabindex="1" />
7
+        <input type="submit" value="search" />
8
+    </form>
9
+</div>
8 10
 {% endblock %}