80 lines
4.0 KiB
Twig
80 lines
4.0 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="fr, en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Créer une intervention</title>
|
|
<link href="{{ asset('styles/css/intervention.css') }}" rel='stylesheet'>
|
|
<link rel="icon"
|
|
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="background"></div>
|
|
<img class="logoCalendar" src="{{ asset('styles/image/calendar.png') }}" alt="Logo Calendrier">
|
|
<a href="{{ path('app_intervention_index') }}" class="intervention">Créer une intervention</a>
|
|
<img class="logoChauffagiste" src="{{ asset('styles/image/chauffagiste.png') }}" alt="Logo Chauffagiste">
|
|
<h1 class="chauffagiste">Choisissez un chauffagiste</h1>
|
|
<img class="logoModifier" src="{{ asset('styles/image/modifier.png') }}">
|
|
<h1 class="modifier">Modifier l'intervention</h1>
|
|
<img class="logoHegre" src="{{ asset('styles/image/LogoHegreConfort_SansFond.png') }}">
|
|
|
|
|
|
<div class="background-intervention">
|
|
<input required id="nom" placeholder="Nom de l'intervention">
|
|
|
|
<select required type="select" name="pannes" id="pannes">
|
|
<option value="pan1">pan1</option>
|
|
<option value="pan2">pan2</option>
|
|
<option value="pan3">pan3</option>
|
|
<option value="pan4">pan4</option>
|
|
<option value="pan5">pan5</option>
|
|
<option value="pan6">pan6</option>
|
|
</select>
|
|
|
|
<select required type="select" name="pannes" id="employesCompetences">
|
|
<option value="emp1">employé1 - sa compétence</option>
|
|
<option value="emp2">employé2 - sa compétence</option>
|
|
<option value="emp3">employé3 - sa compétence</option>
|
|
<option value="emp4">employé4 - sa compétence</option>
|
|
<option value="emp5">employé5 - sa compétence</option>
|
|
<option value="emp6">employé6 - sa compétence</option>
|
|
</select>
|
|
|
|
<!-- <input required id="employesCompetences" placeholder="Liste des employés et de leurs compétences"> -->
|
|
<select required type="select" name="piece" id="piece">
|
|
<option value="pièce1">Pièce affecter 1</option>
|
|
<option value="pièce2">Pièce affecter 2</option>
|
|
<option value="pièce3">Pièce affecter 3</option>
|
|
<option value="pièce4">Pièce affecter 4</option>
|
|
<option value="pièce5">Pièce affecter 5</option>
|
|
<option value="pièce6">Pièce affecter 6</option>
|
|
</select>
|
|
|
|
<p id="vehicule">Véhicule nécessaire</p>
|
|
<input type="checkbox" name="vehicule1" id="vehicule1">
|
|
<label for=”vehicule1” id="oui"> Oui </label>
|
|
<input type="checkbox" name="vehicule2" id="vehicule2">
|
|
<label for=”vehicule2” id="non"> Non </label>
|
|
|
|
<p id="date">Jour de l'intervention</p>
|
|
<input type="date" id="calendar">
|
|
|
|
<input type="text" id="description" placeholder="Description">
|
|
<input type="text" id="adresse" placeholder="Adresse">
|
|
|
|
<button type="submit" class="applique"> Appliquée </button>
|
|
<button type="reset" class="supprimer"> Supprimer </button>
|
|
|
|
|
|
|
|
<!-- {{ include('intervention/_form.html.twig') }} -->
|
|
|
|
<a href="{{ path('app_intervention_index') }}" id="liste">Retour à la liste</a>
|
|
</div>
|
|
</body>
|
|
</html>
|