-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
22 lines (22 loc) · 862 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Neoden4 Altium CSV Converter</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="neoden.css" />
</head>
<body>
<h4>Neoden4 Altium CSV Converter</h4>
<br />
<input type="file" id="files" name="files[]" accept=".csv" onchange="handleFileSelect(event)" /><br />
<input type="checkbox" name="rotate" id="rotateCheck">Rotate 90°<br />
<br />
<div id="header">Units used: mm<br />Fields used: Designator, Footprint, Mid X, Mid Y, Layer, Rotation, Comment/Value<br /></div>
<br />
<button id="convertButton" type="button" onclick="convert()" disabled>Convert and Download</button>
<br />
<script src="neoden.js" type="text/javascript"></script>
</body>
</head>