aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/search.html
blob: 4c07ee6152d8fdb0e87d483a0a56544fd721efdd (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
40
41
42
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Yomichan Search</title>
        <link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap/css/bootstrap.min.css">
        <link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap/css/bootstrap-theme.min.css">
        <link rel="stylesheet" type="text/css" href="/mixed/css/frame.css">
    </head>
    <body>
        <div class="container-fluid">
            <div id="intro">
                <div class="page-header">
                    <h1>Yomichan Search</h1>
                </div>
                <p>Search your installed dictionaries by entering a Japanese expression into the field below.</p>
            </div>

            <p>
                <form class="input-group">
                    <input type="text" class="form-control" placeholder="Search for..." id="query" autofocus>
                    <span class="input-group-btn">
                        <input type="submit" class="btn btn-default form-control" id="search" value="Search" disabled>
                    </span>
                </form>
            </p>

            <div id="spinner">
                <img src="/mixed/img/spinner.gif">
            </div>

            <div id="content"></div>
        </div>

        <script src="/mixed/lib/jquery.min.js"></script>
        <script src="/bg/js/util.js"></script>
        <script src="/mixed/js/util.js"></script>
        <script src="/mixed/js/display.js"></script>
        <script src="/mixed/lib/wanakana.min.js"></script>
        <script src="/bg/js/display-window.js"></script>
    </body>
</html>