-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeentry.html
More file actions
55 lines (47 loc) · 1.71 KB
/
makeentry.html
File metadata and controls
55 lines (47 loc) · 1.71 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>
<head>
<meta charset="utf-8">
<title>Add a Book</title>
</head>
<body>
<header>
<h1> Book Catalog </h1>
<div class="navbar">
<a href ="search.html">Search</a>
<a href ="makeentry.html">Add a Book</a>
<a href ="update.html">Make Changes to Database</a></li>
<a href ="delete.html">Delete</a>
<a href ="index.html">Home</a>
</div>
</header>
<!-- <h1>Functionallity: </h1>
<h2>This is where the user will add Books to the db.</h2>
<h3>This page stisfies the "C" in the CURD functions meaning it will create entries to the database</h4>
<ul>
<h4>Each entry must have:</h4>
<li>A book title.</li>
<li>At least one author of the book.</li>
<li>At least one publisher of the book.</li>
<li>At least one gerne that the book falls under.</li>
</ul> -->
<h4>For multiple Authors publishers and gernes seperate entries with comma</h4>
<div class="input-container">
<label for="book-input" class = "input-label">Title</label>
<input name="book-input" class = "input-box" ""></input>
</div>
<div class="input-container">
<label for="author-input" class = "input-label">Author(s)</label>
<input name="author-input" class = "input-box"></input>
</div>
<div class="input-container">
<label for="publisher-input" class = "input-label">Publisher(s)</label>
<input name="publisher-input" class = "input-box"></input>
</div>
<div class="input-container">
<label for="gerne-input" class = "input-label">Gerne(s)</label>
<input name="gerne-input" class = "input-box"></input>
</div>
<button class="submit-button">Submit all feilds</button>
</body>
</html>