mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
52 lines
1.4 KiB
HTML
52 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>
|
|
|
|
<div class="text-center">
|
|
<button class="button"><span>Zapisz</span><span>⮞</span></button>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<script type="module" src="/js/eventCreate.js"></script>
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|