diff options
author | Minteck <contact@minteck.org> | 2021-12-12 13:04:51 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-12 13:04:51 +0100 |
commit | 0213485154399b7d29bf599e11d74fbe7097f88a (patch) | |
tree | 42487323fe049ec25ec26d81c45715cb07c7f24d /index.php | |
parent | 9ca7f4f0582bf219e0b777c60b308accb682057f (diff) | |
download | wolfeye-php-0213485154399b7d29bf599e11d74fbe7097f88a.tar.gz wolfeye-php-0213485154399b7d29bf599e11d74fbe7097f88a.tar.bz2 wolfeye-php-0213485154399b7d29bf599e11d74fbe7097f88a.zip |
Home redesign v2
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -3,18 +3,20 @@ <head> <meta charset="UTF-8"> <title>WolfEye</title> - + <link rel="icon" href="/logo.svg"> <link rel="stylesheet" href="assets/main.css"> </head> <body> <div class="container"> - <h1 class="title is-1">WolfEye</h1> + <h1 class="title is-1" id="home-logo"> + <img src="/logo.svg"> + </h1> <form action="search"> - <input class="search-input" type="text" name="q" placeholder="Search the Web..."> + <input id="home-bar" class="search-input" autocomplete="off" spellcheck="false" 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 --> + <input class="home-btn" id="home-submit" type="submit" value="WolfEye Search"> + <input class="home-btn home-btn-last" id="home-lucky" type="button" value="I'm feeling lucky"> </div> <link rel="icon" href="/logo.svg"> </form> |