Upload New File

parent dd116103
<!DOCTYPE html>
<html>
<title>Product matching</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
<div class="w3-card-4 w3-cell">
<div class="w3-container w3-green">
<h2>Product matching</h2>
</div>
<form class="w3-container" role="form" method="POST" action="/">
<p>
<label class="w3-text-green"><b>Masukkan nama produk data uji</b></label>
<input class="w3-input w3-border w3-sand" name="p1" type="text"></p>
<p>
<label class="w3-text-green"><b>Masukkan nama produk selain data uji</b></label>
<input class="w3-input w3-border w3-sand" name="p2" type="text"></p>
<p>
<button class="w3-btn w3-green" type="submit">Input</button></p>
</form>
</div>
<h2>Daftar hasil product matching</h2>
<table class="w3-table w3-table-all w3-hoverable">
<tr class="w3-green">
{% for col in column_names %}
<th>{{col}}</th>
{% endfor %}
</tr>
{% for row in row_data %}
<tr>
{% for dr in row %}
<td>{{dr}}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment