Spaces:
Sleeping
Sleeping
<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> | |