mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-11 05:33:23 +01:00
27 lines
807 B
HTML
27 lines
807 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Doodle3D</title>
|
|
<link href="css/style.css" rel="stylesheet" media="screen">
|
|
</head>
|
|
<body>
|
|
|
|
<span id="txtInfo"></span>
|
|
<img id="logo" src="../img/logo/doodle3d.png" height="25">
|
|
<hr>
|
|
<button id="btnSelectAll">Select all</button>
|
|
<button id="btnDeselectAll">Deselect all</button>
|
|
<button id="btnDelete">Delete</button>
|
|
<button id="btnDownload">Download</button> <!-- <a id="link" href="#">Download</a> -->
|
|
<button id="btnCombine">Combine...</button>
|
|
<button id="btnRefresh">Refresh</button>
|
|
<form id="frmUpload"><button id="btnUpload">Upload</button><input id="uploads" type="file" accept="image/svg+xml" multiple/></form>
|
|
|
|
<hr>
|
|
<div id="svgContainer"></div>
|
|
|
|
<script src="../js/libs/jquery-1-9-1.min.js"></script>
|
|
<script src="js/main.js"></script>
|
|
|
|
</body>
|
|
</html> |