File size: 893 Bytes
3537d48
 
 
 
2f1b584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3537d48
 
2f1b584
 
 
 
 
3537d48
2f1b584
3537d48
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Paste ARC Task JSON</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: white;
            padding: 30px;
            text-align: center;
        }
        textarea {
            width: 80%;
            height: 300px;
            padding: 10px;
            font-family: monospace;
            font-size: 14px;
            margin-bottom: 20px;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }
    </style>
</head>
<body>

    <h1>Concept Guided GP</h1>
    <form action="/submit_json" method="post">
        <textarea name="json_input" placeholder="ARC task" required></textarea><br>
        <button type="submit">What concept is in this task</button>
    </form>

</body>
</html>