File size: 1,242 Bytes
327d208
a6a5360
327d208
 
2e329bd
327d208
 
a6a5360
ad66b01
 
 
327d208
 
 
 
ad66b01
327d208
 
 
 
 
 
ad66b01
327d208
 
 
 
 
2e329bd
327d208
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
<head>
    <title>ArXiv Document Search</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
    <link rel="stylesheet" href="/static/style.css">
</head>
<body>
    <h1>Search ArXiv Documents</h1>
    <div id="api-container">
        <input type="password" id="apikey-input" placeholder="Enter API key (required)">
    </div>
    <div id="search-container">
        <input type="text" id="keyword-input" placeholder="Enter search keyword">
        <input type="number" min="1" id="limit-input" value="15" disabled placeholder="Enter limit of documents">
        <button id="search-button">Search</button>
        <button id="plan-button">Get Plan</button>
    </div>
    <input type="checkbox" name="limit" id="limit-check"><label for="limit-check">Custom limit ?</label>
    <div id="results-container"></div>
    <div id="popup" class="popup">
        <div class="popup-content">
            <span class="close">&times;</span>
            <h2 id="popup-title"></h2>
            <div class="scrollable-text">

            </div>
        </div>
    </div>
    <script src="/static/script.js"></script>
</body>