-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-author.html
54 lines (54 loc) · 966 Bytes
/
add-author.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Add an Author</title>
</head>
<body>
<header>
<h1>Favorite Books</h1>
<hr />
</header>
<h2>Add An Author</h2>
<form id="add-author-form">
<div>
<label for="firstName">First Name:</label>
<input
type="text"
name="firstName"
id="firstName"
required
minlength="1"
maxlength="255"
/>
</div>
<div>
<label for="lastName">Last Name:</label>
<input
type="text"
name="lastName"
id="lastName"
required
minlength="1"
maxlength="255"
/>
</div>
<div><button type="submit">Add Author</button></div>
</form>
<div id="messages"></div>
<footer>
<p>
Return
<a href="/index.html">home</a>
</p>
</footer>
<script
type="module"
src="src/add-author.ts"
></script>
</body>
</html>