summaryrefslogtreecommitdiff
path: root/static/submit.js
diff options
context:
space:
mode:
authorDaniel Hader <[email protected]>2026-06-02 18:31:13 -0500
committerDaniel Hader <[email protected]>2026-06-02 18:31:13 -0500
commitfc82931fab3ee1203ebb894840f9eede0dee2a08 (patch)
tree404a003420ee49395e315f68efbaab886ba83975 /static/submit.js
parentfd1df05cf1cf9fdecc5b8428d6e2993e892805e9 (diff)
submission page layout and endpoint
Diffstat (limited to 'static/submit.js')
-rw-r--r--static/submit.js14
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() {
+
+}