forked from sivann/itdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathu.html
More file actions
33 lines (26 loc) · 844 Bytes
/
Copy pathu.html
File metadata and controls
33 lines (26 loc) · 844 Bytes
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
<html>
<head>
<link rel="stylesheet" href="../../css/itdb.css" type="text/css">
</head>
<body>
<div style='float:left;border:1px solid black;width:400px;'>
<table width='100%' border=0>
<tr>
<form target="upload_target" id="file_upload_form" method="post" enctype="multipart/form-data" action="upload.php">
<td style='width:50px;'>File:</td>
<td><input name="file" id="file" size="25" type="file"></td>
<td><input type="submit" name="action" value="Upload"></td>
</tr>
<tr>
<td>Title:</td>
<td colspan=2><input name="title" id="title" size="45" style='width:350px;' type="text"></td>
</tr>
<tr>
<td style='text-align:center;border-top:1px solid #a0a0a0;' colspan=3>
<iframe id="upload_target" name="upload_target" src="upload.php" frameborder="0"></iframe>
</td>
</tr>
</form>
</table>
</div><!-- upload -->
</body>