-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.72 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Library</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/cosmo/bootstrap.min.css" />
</head>
<body>
<nav class="navbar navbar-light bg-light">
<a href="/" class="navbar-title">My Library</a>
</nav>
<div class="container">
<!-- APP -->
<div id="App" class="row pt-5">
<div class="col-md-4">
<div class="card">
<div class="card-header">
<h4>Add Book</h4>
</div>
<form id="book-form" class="card-body">
<div class="form-group">
<input type="text" id="name" placeholder="Product Name" class="form-control">
</div>
<div class="form-group">
<input type="text" id="author" placeholder="Author Name" class="form-control">
</div>
<div class="form-group">
<input type="number" id="pages" placeholder="Number of pages" class="form-control"
value="100" min="0">
</div>
<input type="submit" placeholder="Save Book" class="btn btn-primary btn-block">
</form>
</div>
</div>
<div id="book-list" class="col-md-8">
</div>
</div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>