-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hanna
committed
Oct 24, 2024
1 parent
9e1cc8a
commit 4a8cfe3
Showing
12 changed files
with
509 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Admin Panel</title> | ||
<link rel="stylesheet" href="./css/main.css" /> | ||
</head> | ||
<body> | ||
<div class="navigation-list"> | ||
<ul class="dash-under-link"> | ||
<li class="nav__link"><a href="index.html" class="active">Головна</a></li> | ||
<li class="nav__link"><a href="about.html">Про нас</a></li> | ||
<li class="nav__link"><a href="#">Портфоліо</a></li> | ||
<li class="nav__link"><a href="#">Послуги</a></li> | ||
<li class="nav__link"><a href="#">Відгуки</a></li> | ||
<li class="nav__link"><a href="admin.html">Панель Адміністратора</a></li> | ||
</ul> | ||
</div> | ||
|
||
<form id="uploadForm" enctype="multipart/form-data"> | ||
<input type="file" id="photo" name="photo" accept="image/*" required /> | ||
<input type="text" id="description" name="description" placeholder="Опис" required /> <!-- Поле для опису --> | ||
<input type="number" id="price" name="price" placeholder="Ціна" step="0.01" required /> <!-- Поле для ціни --> | ||
<button type="submit">Завантажити</button> | ||
</form> | ||
|
||
|
||
<h2>Список фото</h2> | ||
<div id="photoList" class="testimonials__row"></div> | ||
|
||
<script src="./js/script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"name": "1729782003971.jpg", | ||
"url": "http://localhost:3000/uploads/1729782003971.jpg", | ||
"description": "Феєрія ", | ||
"price": "1" | ||
}, | ||
{ | ||
"name": "1729782033543.jpg", | ||
"url": "http://localhost:3000/uploads/1729782033543.jpg", | ||
"description": "о", | ||
"price": "2" | ||
} | ||
] |
Oops, something went wrong.