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.

27 lines
480 B
HTML
Raw Normal View History

2022-07-15 17:25:57 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Edit</title>
<style>
#code_textarea {
width: 90%;
height: 600px;
}
#output_text {
margin: 0;
font-size: 0.7em;
}
</style>
2022-07-25 20:15:43 -04:00
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>