Produce charts of component availability at JLCPCB from a BOM
Mirrored from https://github.com/gavanfantom/jlc-chart
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
539 B
26 lines
539 B
3 years ago
|
<!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>
|