Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1285 → Rev 1286

/FileXch/branches/php-impl/guest.php
0,0 → 1,72
<?php
$isEntryPoint = true;
include("lib/common.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 
<head>
<title>FilExch</title>
</head>
 
<body>
 
<table border=1>
<tr>
<th>Expires</th>
<td>01.01.2008 12:00:00</td>
</tr>
<tr>
<th>Current Size</th>
<td>123 MB</td>
</tr>
<tr>
<th>Size Limit</th>
<td>1 GB</td>
</tr>
<tr>
<th>Files</th>
<td>3</td>
</tr>
<tr>
<th>Files Limit</th>
<td>-</td>
</tr>
</table>
 
<table border=1>
<tr><td><a href="#">file1.txt</a></td></tr>
<tr><td><a href="#">file2.mp3</a></td></tr>
<tr><td><a href="#">file3.avi</a></td></tr>
</table>
 
<form>
 
<table border=1>
<tr>
<td>File 1</td>
<td><input type=file></td>
</tr>
<tr>
<td>File 2</td>
<td><input type=file></td>
</tr>
<tr>
<td>File 3</td>
<td><input type=file></td>
</tr>
<tr>
<td>File 4</td>
<td><input type=file></td>
</tr>
<tr>
<td colspan=2 align=right><input type=submit value="Upload"></td>
</tr>
</table>
 
</form>
 
</body>
 
</html>