open.html 989 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Open Diagram</title>
  5. <link rel="stylesheet" type="text/css" href="styles/grapheditor.css" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <script src="js/open.js" type="text/javascript"></script>
  8. </head>
  9. <body>
  10. <form method="POST" enctype="multipart/form-data" action="" name="openForm"
  11. id="openForm" accept-charset="UTF-8">
  12. <table style="width:100%;">
  13. <tr>
  14. <td style="height:40px;vertical-align:top;" colspan="2">
  15. <input type="file" name="upfile">
  16. </td>
  17. </tr>
  18. <tr>
  19. <td colspan="2" height="120px" id="openSupported" style="font-family:arial;color:grey;font-size:9pt;vertical-align:top;text-align:left;">
  20. </td>
  21. </tr>
  22. <tr>
  23. <td>
  24. </td>
  25. <td style="vertical-align:middle;text-align:right;white-space:nowrap;">
  26. <input type="button" id="closeButton" class="geBtn" value="Cancel">
  27. <input type="submit" id="openButton" class="geBtn gePrimaryBtn" value="Open" disabled="disabled">
  28. </td>
  29. </tr>
  30. </table>
  31. </form>
  32. </body>
  33. </html>