b67f3585e8
added remote css support to webworkflow edit.html and moved in page css out to the external stylesheet.
17 lines
416 B
HTML
17 lines
416 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Code Edit</title>
|
|
<link rel="stylesheet" href="http://circuitpython.org/assets/css/webworkflow-8.css">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<button id="save_btn">Save</button>
|
|
<p id="output_text">Loading</p>
|
|
<textarea id="code_textarea"></textarea>
|
|
|
|
<script src="/edit.js" defer=true></script>
|
|
</body>
|
|
</html>
|