-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (53 loc) · 2.13 KB
/
index.html
File metadata and controls
55 lines (53 loc) · 2.13 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Product App</title>
<!--BOOTSTRAP CDN BOOTSWATCH-->
<link rel="stylesheet" href="styles/bootstrap.min.css">
</head>
<body>
<!--NAVIGATION-->
<nav class="navbar navbar-light bg-light">
<a href="/" class="navbar-brand">
Product App
</a>
</nav>
<div class="container">
<!--APPLICATION-->
<div id="app" class="row pt-5">
<div class="col-md-4">
<div class="card">
<div class="card-header">
<h4>Add a product</h4>
</div>
<form id="product-form" class="card-body">
<div class="form-group">
<label for="name">Product name</label>
<input type="text" id="name" placeholder="Name" class="form-control">
</div>
<div class="form-group">
<label for="price">Product cost per piece</label>
<input type="number" step="0.01" id="price" placeholder="Price" class="form-control">
</div>
<div class="form-group">
<label for="lot">Product quantity</label>
<input type="number" id="quantity" placeholder="Quantity" class="form-control">
</div>
<div class="form-group">
<label for="year">Product date</label>
<input type="date" id="year" class="form-control">
</div>
<input type="submit" value="save" class="btn btn-primary btn-block">
</form>
</div>
</div>
<!--PRODUCTS-->
<div id="product-list" class="col-md-8"></div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>