aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-01-15 21:24:45 -0500
committerHolden Rohrer <hr@hrhr.dev>2020-01-15 21:24:45 -0500
commit7775af4dd0b7ae7d17450c245c96c77a9c91ad78 (patch)
tree85bc5c217b82f3a837a1409d2272865f9d263914
parent3211cc843af9e7a0d0a560aebd720b5979149a21 (diff)
added html form
-rw-r--r--form.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/form.html b/form.html
new file mode 100644
index 0000000..28de719
--- /dev/null
+++ b/form.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMUN PDF Generator</title>
+ <script>
+ let curform = 'award';
+ function switchShow(id){
+ document.getElementById(curform).style.display = 'none';
+ document.getElementById(id).style.display = '';
+ curform = id;
+ }
+ </script>
+</head>
+
+<body>
+ <h4>Form Type:</h4>
+ <input type="radio" name="form" value="award" onchange="switchShow('award')" checked>Award</input><br>
+ <input type="radio" name="form" value="room" onchange="switchShow('room')">Room</input><br>
+ <form action="award.pdf" method="get" id="award" class="submit">
+ Committee: <input type="text" name="committee"/><br>
+ Country: <input type="text" name=""/><br>
+ Award Name: <input type="text" name="award"/><br>
+ School: <input type="text" name="school"/><br>
+ <input type="submit"/>
+ </form>
+ <form action="room" style="display: none" id="room" class="submit">
+ Committee: <input type="text" name="committee"/><br>
+ <input type="submit"/>
+ </form>
+</body>
+</html>