diff options
author | Jae Lo Presti <me@jae.fi> | 2021-12-12 12:46:42 +0200 |
---|---|---|
committer | Jae Lo Presti <me@jae.fi> | 2021-12-12 12:46:42 +0200 |
commit | fa377e7bd80d9fd7bb8d2d8b7f29f58c13fc9ca6 (patch) | |
tree | 62dfed2a51ce4c4c138ad80f85c210d92cd954a6 /index.php | |
parent | dc8f78256944885108f1d52b822c8677bf9d964c (diff) | |
download | wolfeye-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.php | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -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> |