-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestionindex.php
33 lines (25 loc) · 925 Bytes
/
questionindex.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<link rel="stylesheet" type="text/css" href="style/style.css" media="screen" />
<title>login</title>
</head>
<body>
<div id="wrapper">
<?php include('includes/header.php'); ?>
<?php include('includes/nav.php'); ?>
<form action="question.php" method= "POST" >
securequestion:<input type ="securequestion" name="securequestion" ><br /><br />
answer:<input type ="answer" name="answer" ><br /><br />
<input type= "submit" name= "submit" value="continue" >
</form>
<div id="content">
<?php include('includes/footer.php'); ?>
</div>
</div> <!-- End #wrapper -->
</body>
</html>