Add jlc-chart app

This commit is contained in:
Gavan Fantom
2021-12-02 12:34:36 +00:00
parent 63ee03a11c
commit 9d8192dff6
12 changed files with 538 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JLCPCB stock query</title>
<style>
textarea
{
width: 98%;
height: auto;
}
</style>
</head>
<body>
<div align="center">
<h1>Paste your BOM here</h1>
<textarea name="bom" rows="50" form="bomform" placeholder="Paste your CSV file here"></textarea>
<p/>
<form action="{{ url_for('bom.bom') }}" id="bomform" method="POST">
<input type="submit" value="Submit BOM">
</form>
</div>
</body>
</html>