Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
TA-12
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Boas Demeson Pangaribuan
TA-12
Commits
dd116103
Commit
dd116103
authored
Dec 16, 2020
by
Boas Demeson Pangaribuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete index.html
parent
3f1f4171
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
43 deletions
+0
-43
index.html
Oke/index.html
+0
-43
No files found.
Oke/index.html
deleted
100644 → 0
View file @
3f1f4171
<!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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment