This repository has been archived on 2025-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vwa_project/web/templates/create_repair.html
2024-12-09 20:30:19 +01:00

42 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vytvořit Novou Opravu</title>
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}">
</head>
<body>
<header>
<div class="header">
<h1>Vytvořit Novou Opravu</h1>
</div>
</header>
<div class="container">
<form action="{{ url_for('create_repair') }}" method="post" class="form-container">
<label for="id_zamestnance">Zaměstnanec:</label>
<select id="id_zamestnance" name="id_zamestnance" required>
<option value="" disabled selected>Vyberte zaměstnance</option>
{% for employee in employees %}
<option value="{{ employee['ID_Uzivatele'] }}">{{ employee['Jmeno'] }} {{ employee['Prijmeni'] }}</option>
{% endfor %}
</select>
<label for="nazev">Název:</label>
<input type="text" id="nazev" name="nazev" required>
<label for="popis">Popis:</label>
<textarea id="popis" name="popis" required></textarea>
<button type="submit" class="button">Vytvořit</button>
</form>
</div>
<footer class="footer">
<div>Made by Hrachovina</div>
</footer>
</body>
</html>