-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (37 loc) · 1.25 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet" >
<title>Approxidraw</title>
</head>
<body>
<!--<p><a href="tests.html">Tests</a></p>-->
<h1>Approxidraw</h1>
<div id="wrapper">
<div class="container">
<div id="inputs">
<form class="form-inline">
<input type="text" class="form-control" id="imgUrl" placeholder="Enter an image URL" value="https://i.imgur.com/t0XRVO0.png" >
<button type="button" class="btn btn-primary" id="start">Render</button>
</form>
</div> <!-- end inputs -->
<div>
<img id="target-image">
<img id="approx-image">
<p id="stats"></p>
</div>
<span id="error"></span>
<span id="loading-text"></span>
<div id="progress"><div class="filled"></div></div>
<ul id="serverlog"></ul>
</div>
</div>
<script src="jquery/dist/jquery.js"></script>
<script src="main.js"></script>
<span id="footer-right">
Made by <a href="http://twitter.com/adam_chal">@adam_chal</a>. Fork this on <a href="https://github.com/adamchalmers/approx_draw">Github</a>!
</span>
</body>
</html>