circuitpython/supervisor/shared/web_workflow/static/edit.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
424 B
HTML
Raw Normal View History

2022-07-15 17:25:57 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2022-08-16 18:44:58 -04:00
<title>Offline Code Edit</title>
<link rel="stylesheet" href="http://circuitpython.org/assets/css/webworkflow-8.css">
<link rel="stylesheet" href="/style.css">
2022-07-15 17:25:57 -04:00
</head>
<body>
<button id="save_btn">Save</button>
<p id="output_text">Loading</p>
2022-07-25 20:15:43 -04:00
<textarea id="code_textarea"></textarea>
2022-07-15 17:25:57 -04:00
<script src="/edit.js" defer=true></script>
</body>
</html>