Files
pyscript/pyscript.core/tests/manual/submit.html
Andrea Giammarchi a6b0964185 Fix #2155 - Allow editor.process to run on behalf of users (#2177)
* Fix #2155 - Allow editor.process to run on behalf of users

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Updated dev/dependendencies

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-09-20 15:42:29 +02:00

16 lines
377 B
HTML

<!doctype html>
<html>
<head>
<link rel="stylesheet" href="../../dist/core.css">
<script type="module" src="../../dist/core.js"></script>
</head>
<body>
<script type="py-editor" id="editor">
import sys
print(sys.version)
</script>
<script type="py" src="submit.py"></script>
<button py-click="submit">Submit</button>
</body>
</html>