-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.html
30 lines (30 loc) · 1.09 KB
/
post.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="post.css" />
<script src="post.js" defer></script>
</head>
<body>
<h1 id="page">책 등록</h1>
<!-- <div id="book-form"> -->
<div class="add-book-wrapper">
<form id="add-book">
<label for="title">제목:</label>
<input type="'text" id="title" name="title" required />
<label for="author">저자:</label>
<input type="'text" id="author" name="author" required />
<label for="price">가격:</label>
<input type="'text" id="price" name="price" required />
<label for="description">설명:</label>
<textarea id="description" name="description" required></textarea>
<label for="image">이미지 선택:</label>
<input type="file" id="image" name="image" accept="image/*" required />
<button type="submit" id="btn">등록</button>
</form>
<!-- </div> -->
</div>
</body>
</html>