woletee
this is the last commit I made for toneight next I have to prepare on the notion and my model is also writting as well yesss now it is working
a37b981
raw
history blame
863 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Paste ARC Task JSON</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
text-align: center;
}
textarea {
width: 90%;
height: 400px;
font-family: monospace;
font-size: 14px;
padding: 10px;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Paste ARC Task JSON</h1>
<form action="/submit_json" method="post">
<textarea name="json_data" placeholder="Paste your ARC JSON here..." required></textarea>
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>