woletee
Switch to Flask with HTML visualization
f60fef5
raw
history blame
437 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ARC Task Upload</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Upload ARC Task</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" accept=".json" required>
<button type="submit">Submit</button>
</form>
</body>
</html>