Files
hermes/WebApp/wwwroot/create.html
Witkopawel 071626366e Poprawione dodawanie
Nie działało bo tam bawiłęm się ale już jest naprawione to tam jedna linijka
2025-04-30 15:46:36 +02:00

48 lines
1.4 KiB
HTML

<!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>
<button id="saveBtn" class="button"><span>Zapisz</span><span>&#11166;</span></button>
</div>
<script type="module" src="/js/eventCreate.js"></script>
</body>
</html>