aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorJae Lo Presti <me@jae.fi>2021-12-12 12:46:42 +0200
committerJae Lo Presti <me@jae.fi>2021-12-12 12:46:42 +0200
commitfa377e7bd80d9fd7bb8d2d8b7f29f58c13fc9ca6 (patch)
tree62dfed2a51ce4c4c138ad80f85c210d92cd954a6 /index.php
parentdc8f78256944885108f1d52b822c8677bf9d964c (diff)
downloadwolfeye-php-fa377e7bd80d9fd7bb8d2d8b7f29f58c13fc9ca6.tar.gz
wolfeye-php-fa377e7bd80d9fd7bb8d2d8b7f29f58c13fc9ca6.tar.bz2
wolfeye-php-fa377e7bd80d9fd7bb8d2d8b7f29f58c13fc9ca6.zip
FE: redesign main page
Diffstat (limited to 'index.php')
-rw-r--r--index.php21
1 files changed, 14 insertions, 7 deletions
diff --git a/index.php b/index.php
index 4bc8815..3b1e921 100644
--- a/index.php
+++ b/index.php
@@ -3,14 +3,21 @@
<head>
<meta charset="UTF-8">
<title>WolfEye</title>
+
+ <link rel="stylesheet" href="assets/main.css">
</head>
<body>
- <h1>WolfEye</h1>
- <form action="/search">
- <input type="text" name="q" placeholder="Search the Web...">
- <input type="submit" value="Search!">
- <input type="submit" value="I'm feeling lucky!" disabled>
- <link rel="icon" href="/logo.svg">
- </form>
+ <div class="container">
+ <h1 class="title is-1">WolfEye</h1>
+ <form action="/search">
+ <input class="search-input" type="text" name="q" placeholder="Search the Web...">
+ <br/>
+ <div class="searchbtn">
+ <input type="submit" value="Search!">
+ <!-- <input type="submit" value="I'm feeling lucky!" disabled> DISABLE THIS ONE -->
+ </div>
+ <link rel="icon" href="/logo.svg">
+ </form>
+ </div>
</body>
</html>