-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
146 lines (136 loc) · 4.92 KB
/
Copy pathcreate.html
File metadata and controls
146 lines (136 loc) · 4.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>상품 등록 - Farm2You</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/admin.css" />
<script src="js/main.js" defer></script>
<script src="js/create.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="overlay" id="overlay"></div>
<!-- 햄버거 메뉴 -->
<nav class="hamburger-menu" id="hamburger-menu">
<div class="menu-header">
<button id="menu-close" class="close-btn">
<img src="image/icon-close.svg" alt="close" />
</button>
</div>
<ul class="menu-links">
<li><a href="index.html">홈</a></li>
<li><a href="market.html">농작물 마켓</a></li>
<li><a href="contact.html">문의하기</a></li>
<li><a href="create.html">상품 등록 및 수정</a></li>
</ul>
<div class="menu-footer">
<button class="signout-btn">SIGN OUT</button>
</div>
</nav>
<!-- 헤더 -->
<header class="header">
<div class="header-container">
<div class="header-icon left" id="menu-toggle">
<img src="image/icon-menu.svg" alt="menu" />
</div>
<div class="header-logo">
<a href="index.html">
<img src="image/logo.svg" alt="FARM2YOU" />
</a>
</div>
<div class="header-icon right">
<a href="cart.html">
<img src="image/icon-cart.svg" alt="cart" />
</a>
</div>
</div>
</header>
<!-- 배너 -->
<section class="admin-banner">
<h2>상품 등록</h2>
<p>귀하의 농작물을 등록하세요.</p>
<div class="admin-buttons">
<button onclick="location.href='create.html'" class="tab-btn active">
등록하기
</button>
<button onclick="location.href='edit.html'" class="tab-btn">
수정하기
</button>
</div>
</section>
<!-- 등록 폼 -->
<section class="form-section" id="register-form">
<h3>농작물 등록 폼</h3>
<p style="margin-bottom: 30px; color: #7a5b47; font-size: 16px">
새로운 농작물 상품 정보를 입력하세요.
</p>
<form>
<div class="form-grid">
<div class="form-group">
<label for="edit-name">농작물 이름</label>
<input type="text" id="edit-name" placeholder="예) 사과 500g" />
</div>
<div class="form-group">
<label for="edit-price">가격</label>
<input type="text" id="edit-price" placeholder="예) 3000" />
</div>
<div class="form-group">
<label for="edit-region">생산지</label>
<input type="text" id="edit-region" placeholder="예) 전라북도" />
</div>
<div class="form-group">
<label for="edit-date">생산 연월</label>
<input type="date" id="edit-date" />
</div>
<div class="form-group image-upload">
<label for="edit-image">이미지</label>
<div class="image-input-wrapper">
<input
type="text"
id="image-filename"
class="image-fake-input"
placeholder="이미지를 업로드해 주세요."
readonly
/>
<label for="edit-image" class="image-upload-btn">파일 선택</label>
<input type="file" id="edit-image" accept="image/*" hidden />
</div>
</div>
<div class="form-group">
<label for="edit-weight">중량</label>
<input type="text" id="edit-weight" placeholder="예) 500g" />
</div>
<div class="form-group">
<label>농작물 종류</label>
<div class="category-select">
<button type="button" id="cat-veg">채소</button>
<button type="button" id="cat-fruit">과일</button>
<button type="button" id="cat-grain">곡물</button>
</div>
</div>
<div class="form-group">
<label for="edit-description">설명</label>
<input
type="text"
id="edit-description"
placeholder="간단한 설명을 입력하세요."
/>
</div>
</div>
<button class="update-btn" type="submit">등록하기</button>
</form>
</section>
<!-- 푸터 -->
<footer class="footer">
<div class="footer-inner">
<img src="image/logo.svg" alt="logo" class="footer-logo" />
<div class="footer-links">
<span>문의: admin@farm2you.com</span>
<a href="privacy.html">개인정보처리방침</a>
<a href="terms.html">이용약관</a>
<span>저작권 © 2025 농작물 쇼핑</span>
</div>
</div>
</footer>
</body>
</html>