Compare commits
2 Commits
f1d1c2737a
...
4e0bc9d428
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e0bc9d428 | |||
| a4bbee1c0f |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -137,9 +137,8 @@ dist
|
|||||||
# Vite logs files
|
# Vite logs files
|
||||||
vite.config.js.timestamp-*
|
vite.config.js.timestamp-*
|
||||||
vite.config.ts.timestamp-*
|
vite.config.ts.timestamp-*
|
||||||
/.vs/DELIVER_MAN.slnx
|
/.vs/*
|
||||||
/.vscode
|
/.vscode
|
||||||
/obj/Debug
|
/obj/Debug
|
||||||
*.slnx
|
|
||||||
*.esproj
|
*.esproj
|
||||||
/CHANGELOG.md
|
/CHANGELOG.md
|
||||||
|
|||||||
6
DELIVER_MAN.slnx
Normal file
6
DELIVER_MAN.slnx
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<Solution>
|
||||||
|
<Project Path="DELIVER_MAN.esproj">
|
||||||
|
<Build />
|
||||||
|
<Deploy />
|
||||||
|
</Project>
|
||||||
|
</Solution>
|
||||||
24
public/index.html
Normal file
24
public/index.html
Normal 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>
|
||||||
Reference in New Issue
Block a user