瀏覽代碼

[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 %}