aboutsummaryrefslogtreecommitdiff
path: root/templates/home.html
blob: bfe16b7ca525323fdb3c8f725d566d7c2d36f6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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>