Spaces:
Sleeping
Sleeping
Commit ·
95ec3d0
1
Parent(s): 444e029
Update web UI with HTML, CSS, and JS
Browse files- static/style.css +9 -0
- templates/index.html +14 -0
static/style.css
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
text-align: center;
|
| 4 |
+
background-color: #f5f5f5;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
h1 {
|
| 8 |
+
color: #333;
|
| 9 |
+
}
|
templates/index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="vi">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>WCPJ Floor Classification</title>
|
| 7 |
+
<link rel="stylesheet" href="/static/style.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<h1>Phân loại độ bẩn sàn nhà vệ sinh</h1>
|
| 11 |
+
<p>Tải ảnh lên để hệ thống phân loại</p>
|
| 12 |
+
<iframe src="/gradio" width="100%" height="600px"></iframe>
|
| 13 |
+
</body>
|
| 14 |
+
</html>
|