-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
40 lines (31 loc) · 1.03 KB
/
index.php
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
35
36
37
38
39
40
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<script src="script.js"></script>
<body style="height:100%">
<header>
<h2>Quiz Generator</h2>
</header>
<div style="height:100%" id="form">
<div class="fish" id="fish"></div>
<div class="fish" id="fish2"></div>
<form style="margin-top:-30px" id="waterform" method="get" action="quiz.php">
<div class="formgroup" id="message-form">
<label for="message">Drop Your Text Content Here</label>
<textarea id="message" name="message" style="height:230px"></textarea>
</div>
<input type="submit" value="Create Quiz" />
<input type="hidden" name="submit" value="content" />
</form><br>
<center style="font-size:1.5em">OR</center>
<form style="margin-top:-60px" method="get" action="quiz.php">
<div class="formgroup" id="message-form">
<label for="message">Enter Topic</label>
<textarea id="message" name="keyword" style="height:50px"></textarea>
</div>
<input type="submit" value="Create Quiz" />
<input type="hidden" name="submit" value="wiki" />
</form>
</div>
</body>