Skip to content

Commit 606b90f

Browse files
committed
fix: correct input types and formatting in index.html
1 parent 13abce6 commit 606b90f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

debugging/book-library/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
4-
<title> </title>
4+
<title>Book Library</title>
55
<meta
66
charset="utf-8"
77
name="viewport"
@@ -31,15 +31,15 @@ <h1>Library</h1>
3131
<div class="form-group">
3232
<label for="title">Title:</label>
3333
<input
34-
type="title"
34+
type="text"
3535
class="form-control"
3636
id="title"
3737
name="title"
3838
required
3939
/>
4040
<label for="author">Author: </label>
4141
<input
42-
type="author"
42+
type="text"
4343
class="form-control"
4444
id="author"
4545
name="author"
@@ -65,7 +65,7 @@ <h1>Library</h1>
6565
type="submit"
6666
value="Submit"
6767
class="btn btn-primary"
68-
onclick="submit();"
68+
onclick="submit()"
6969
/>
7070
</div>
7171
</div>

0 commit comments

Comments
 (0)