34 lines
989 B
HTML
34 lines
989 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Open Diagram</title>
|
|
<link rel="stylesheet" type="text/css" href="styles/grapheditor.css" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<script src="js/open.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<form method="POST" enctype="multipart/form-data" action="" name="openForm"
|
|
id="openForm" accept-charset="UTF-8">
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td style="height:40px;vertical-align:top;" colspan="2">
|
|
<input type="file" name="upfile">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" height="120px" id="openSupported" style="font-family:arial;color:grey;font-size:9pt;vertical-align:top;text-align:left;">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
</td>
|
|
<td style="vertical-align:middle;text-align:right;white-space:nowrap;">
|
|
<input type="button" id="closeButton" class="geBtn" value="Cancel">
|
|
<input type="submit" id="openButton" class="geBtn gePrimaryBtn" value="Open" disabled="disabled">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|