-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion_Delete.php
More file actions
58 lines (54 loc) · 1.34 KB
/
Copy pathQuestion_Delete.php
File metadata and controls
58 lines (54 loc) · 1.34 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Erase question</title>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
body {
font-family: 'Nanum Gothic', sans-serif;
}
</style>
<script type="text/javascript">
function move(url) {
location.href=url;
}
</script>
</head>
<body>
<center>
<br><br>
<table width="50%" cellspacing="0" cellpadding="3">
<tr>
<td bgcolor="#dcdcdc" height="21" align="center">
enter question's password!</td>
</tr>
</table>
<form name="BoardDeleteForm" method="post" action="Question_Delete_action.php">
<table width="70%" cellspacing="0" cellpadding="2">
<tr>
<td align="center">
<table align="center" border="0" width="91%">
<tr>
<td align="center">
<input type="hidden" name="qvalue" value="<?php echo $_POST['qvalue']; ?>"/>
<input type="password" name="password" size="17" maxlength="15"/>
</td>
</tr>
<tr>
<td><hr size="1" color="#eeeeee"></td>
</tr>
<tr>
<td align="center">
<input type="submit" value="erase" />
<input type="hidden" value="back" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</center>
</body>
</html>