mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-09 15:02:38 +07:00
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Bootstrap demo</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar bg-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand">Navbar</a>
|
|
<form class="d-flex" role="search" method="GET" action=".">
|
|
<input class="form-control me-2" type="search" placeholder="Customer ID" aria-label="Search" name="cust_id">
|
|
<input class="form-control me-2" type="search" placeholder="Item Name" aria-label="Search" name="item_name">
|
|
<button class="btn btn-outline-success" type="submit">Search</button>
|
|
</form>
|
|
</div>
|
|
</nav>
|
|
<h1>Hello, world! {{name}}</h1>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|