-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.htm
27 lines (27 loc) · 1005 Bytes
/
page.htm
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
<!DOCTYPE html>
<html>
<head>
<script data-main="scripts/main" src="scripts/require.js"></script>
<style>
body { margin: 0; font: 8pt Ubuntu, Tahoma, Arial, sans-serif }
#output { border: 1px solid red }
#controls { border: 2px solid black; position: fixed;
bottom: 0px; width: 100%;
background-color: lightyellow; padding-left: 4px; }
#return, #content { display: none }
</style>
</head>
<body>
<svg id="output" />
<div id="controls">
<form method='POST' enctype='multipart/form-data' accept-charset="utf-8"
action='' target='return'
id="reflectform">
<textarea id="content" name="content"></textarea>
<input type="text" name="filename" id="filename" value="drawing.svg">
<a href="javascript:void(0)" id="save">Save</a>
</form>
</div>
<iframe id="return" name="return"/>
</body>
</html>