Compare commits

..

2 Commits

Author SHA1 Message Date
4e0bc9d428 Edit .gitignore + add slnx 2025-12-27 18:46:12 +03:00
a4bbee1c0f Base of html 2025-12-27 18:44:59 +03:00
3 changed files with 31 additions and 2 deletions

3
.gitignore vendored
View File

@@ -137,9 +137,8 @@ dist
# Vite logs files
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
/.vs/DELIVER_MAN.slnx
/.vs/*
/.vscode
/obj/Debug
*.slnx
*.esproj
/CHANGELOG.md

6
DELIVER_MAN.slnx Normal file
View File

@@ -0,0 +1,6 @@
<Solution>
<Project Path="DELIVER_MAN.esproj">
<Build />
<Deploy />
</Project>
</Solution>

24
public/index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>Личный кабинет</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
crossorigin="anonymous"
/>
</head>
<body class="bg-light">
<div class="container py-4">
<div class="d-flex flex-wrap gap-3 align-items-center justify-content-between mb-4">
<div>
<h1 class="h3 mb-1">Заказы склада</h1>
<p class="text-muted mb-0">Текущая дата: <span id="current-date">{ empty }</span></p>
</div>
<button id="advance-date" class="btn btn-outline-primary">Следующий день</button>
</div>
</div>
</body>
</html>