-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (31 loc) · 1.11 KB
/
index.html
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
<!doctype html>
<html lang="vi">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Hỗ trợ tính tiền khách hàng">
<link rel="stylesheet" type="text/css" href="dist/app.css" />
<title>Bánh tráng sỉ Tây Ninh - Tính giá</title>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<a class="navbar-brand" href="#">Bánh tráng Tây Ninh</a>
</nav>
<main class="container">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="input">Khách hàng chat</label>
<textarea class="form-control" autofocus="true" placeholder="Hãy copy đoạn chat đơn hàng vào đây" id="input"></textarea>
</div>
</div>
<div class="col-sm-6">
<label for="">Kết quả</label>
<div id="result"></div>
</div>
</div>
</main>
<script src="dist/app.bundle.js" type="text/javascript"></script>
</body>
</html>