-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110760165-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110760165-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/Style/style.css">
<script src="/Src/App.js"></script>
<title>SVG Path Parser</title>
</head>
<body>
<div id="main">
<header id="title">
<h1>SVG Path Parser</h1>
</header>
<main id='formAndDisplay'>
<!-- File Selection Form -->
<div id="formContainer">
<form method="post" enctype="multipart/form-data">
<div id='inputContainer'>
<label for="copyAll" id='copyAll'>Copy SVG paths</label>
<input type='button' name="copyAll">
<label for="svgUpload">Select SVG file</label>
<input type="file" name="svgUpload" id="svgUpload">
</div>
</form>
</div>
<div id="noFilesSelected">
<p>No files are currently selected.</p>
</div>
<!-- Output Display -->
<textarea id="displayContainer" readonly></textarea>
</main>
<footer id="footer">
<p>Coded by
<a href="https://github.com/Adam-G-Harris" target="_blank">Adam Harris</a>
</p>
<small>© Copyright 2017</small>
</footer>
</div>
</body>
</html>