blob: d54220890f232ab85965a8f654fd060f909925db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<head>
<title>MiniMUN PDF Generator</title>
<style>
input.sel {
display: inline;
text-align: center;
}
input#awardbutton:checked ~ form#room {
display: none;
}
input#roombutton:checked ~ form#award {
display: none;
}
</style>
</head>
<body>
<input type="radio" name="form" id="awardbutton" class="sel" value="award" checked>Award</input>
<input type="radio" name="form" id="roombutton" class="sel" value="room">Room</input>
<form action="award" method="get" id="award" class="submit">
<p>Committee: <input type="text" name="committee"/></p>
<p>Country: <input type="text" name="country"/></p>
<p>Award Name: <input type="text" name="award"/></p>
<p>School: <input type="text" name="school"/></p>
<p><input type="submit"/></p>
</form>
<form action="room" id="room" class="submit">
<p>Committee: <input type="text" name="committee"/></p>
<p><input type="submit"/></p>
</form>
</body>
</html>
|