-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.html
More file actions
35 lines (34 loc) · 1.28 KB
/
service.html
File metadata and controls
35 lines (34 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>สินค้า</title>
<link rel="stylesheet" href="{{ url_for('static', filename='service.css') }}">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="navbar">
<a href="index.html">หน้าแรก</a>
<a href=about.html>เกี่ยวกับ</a>
<a href="service.html">บริการ</a>
<a href="contact.html">ติดต่อ</a>
<a href=register.html>สมัครงาน</a>
<form>
<div class="search">
<form>
<input type="text" placeholder="Search...">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
</form>
</div>
<h1>สินค้า</h1>
<form action="/add" method="post">
<input type="text" name="item" placeholder="เพิ่มสินค้า">
<input type="submit" value="เพิ่ม">
</form>
<ul>
{% for item in items %}
<li>{{ item }}</li>
{% endfor %}
</ul>
</body>
</html>