Skip to content

Commit

Permalink
Merge pull request #20 from ivyadam/main
Browse files Browse the repository at this point in the history
fix formatting
  • Loading branch information
allisonglittle authored Nov 30, 2021
2 parents a5bdaf3 + ba0030f commit baf7c07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library-express/views/books.handlebars
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1>Library Inventory Management</h1>
<form id="addBook" action="/books" method="post">
<h1>Add book to library inventory</h1>
<h2>Add Book</h2>
<label for="ISBN">ISBN: </label>
<select name="ISBN" required>
{{#each titles}}
Expand Down
2 changes: 1 addition & 1 deletion library-express/views/loan_status.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<body>
<h1>Library Inventory Management</h1>
<form id="addStatus" action="/loan_status" method="post">
<h2>Add loan status</h1>
<h2>Add Loan Status</h1>
<label>Status Name: </label>
<input type="text" name="statusDescription" required><br>
<p><input type="submit" value="Create Status"></p>
Expand Down
1 change: 1 addition & 0 deletions library-express/views/patrons.handlebars
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div>
<h1>Library Inventory Management</h1>
<h2>Add a New Patron</h2>
<form id="addPatron" action="/patrons" method="post">
<p><label for="firstName">First Name:</label><br>
Expand Down
3 changes: 2 additions & 1 deletion library-express/views/titles.handlebars
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<main>
<div>
<h3>Add Title to TEST Library</h3>
<h1>Library Inventory Management</h1>
<h2>Add Title</h2>
<!-- <form action="/query_book_api" method="post"> -->
<form id="addTitle" action="/titles" method="post">
<p><label for="ISBN">ISBN:</label><br>
Expand Down

0 comments on commit baf7c07

Please sign in to comment.