diff options
| author | frosty <frosty@illegalfirearms.store> | 2026-01-06 23:46:24 -0500 |
|---|---|---|
| committer | frosty <frosty@illegalfirearms.store> | 2026-01-06 23:46:24 -0500 |
| commit | f3aa7ca0bc2ef7c286609e8f87d07cc2568093af (patch) | |
| tree | 269352af1238b4dd7c3e2e023f71a27b858cdb34 /templates/home.html | |
rebase(d)
Diffstat (limited to 'templates/home.html')
| -rw-r--r-- | templates/home.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..bfe16b7 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html lang="en"> + + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title> + OmniSearch + </title> + <link rel="stylesheet" href="static/main.css"> + </head> + + <body> + <div class="view-home"> + <div class="container"> + <h1 class="hero-logo"> + Omni<span>Search</span> + </h1> + <form action="/search" class="home-search-form"> + <div class="search-input-wrapper"> + <input name="q" type="text" class="search-box" placeholder="Search the web..." + autofocus autocomplete="off"> + </div> + <div class="buttons"> + <button type="submit" class="btn-primary"> + Search + </button> + <a target="_blank" href="https://bwaaa.monster/donate"> + <button type="button" class="btn-secondary"> + Donate + </button> + </a> + </div> + </form> + </div> + </div> + </body> + +</html>
\ No newline at end of file |
