diff options
| author | Daniel Hader <[email protected]> | 2026-06-02 18:31:13 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-06-02 18:31:13 -0500 |
| commit | fc82931fab3ee1203ebb894840f9eede0dee2a08 (patch) | |
| tree | 404a003420ee49395e315f68efbaab886ba83975 /static/submit.js | |
| parent | fd1df05cf1cf9fdecc5b8428d6e2993e892805e9 (diff) | |
submission page layout and endpoint
Diffstat (limited to 'static/submit.js')
| -rw-r--r-- | static/submit.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/static/submit.js b/static/submit.js new file mode 100644 index 0000000..81e3aa6 --- /dev/null +++ b/static/submit.js @@ -0,0 +1,14 @@ + +function submit() { + const submission = { + user_id: 1, + problem_id: 2, + language: "c++", + details: "blah blah", + code: "blah blah", + }; +} + +function init() { + +} |
