Wersja probna

powinno cos dzialac
This commit is contained in:
Witkopawel
2025-04-30 12:40:59 +02:00
parent 74b69f045d
commit 470ce72b6a
12 changed files with 332 additions and 141 deletions

View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Nowe wydarzenie</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css" />
</head>
<body class="bg-light">
<div class="container mt-5">
<h1 class="mb-4">Utwórz wydarzenie</h1>
<div class="form-group mb-2">
<label for="title">Tytuł</label>
<input id="title" class="form-control" />
</div>
<div class="form-group mb-2">
<label for="location">Lokalizacja</label>
<input id="location" class="form-control" />
</div>
<div class="form-group mb-2">
<label for="description">Opis</label>
<textarea id="description" class="form-control"></textarea>
</div>
<div class="form-group mb-2">
<label for="eventDate">Data</label>
<input id="eventDate" type="datetime-local" class="form-control" />
</div>
<div class="form-group mb-4">
<label for="organisationId">ID Organizacji</label>
<input id="organisationId" type="number" class="form-control" />
</div>
<div class="text-center">
<button class="button"><span>Zapisz</span><span>&#11166;</span></button>
</div>
</div>
<script type="module" src="/js/eventCreate.js"></script>
</body>
</html>