mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
98 lines
2.9 KiB
HTML
98 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="referrer" content="same-origin">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<title>Framadate</title>
|
|
|
|
<meta name="description" content=" ">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link crossorigin="anonymous" rel="stylesheet"
|
|
href="https://rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap-reboot.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
|
|
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section>
|
|
<em>Ici un calendier</em>
|
|
</section>
|
|
|
|
<section>
|
|
<p>Je veux ajouter des dates
|
|
<span class=select-wrapper>
|
|
<select id="ajouterDesHoraires">
|
|
<option>sans</option>
|
|
<option>avec des</option>
|
|
</select>
|
|
</span>
|
|
horaires
|
|
<span id="identiquesDifferentsPourChaqueJour" style="display:none">
|
|
<select id="horairesIdentiquesOuDifferents">
|
|
<option>identiques</option>
|
|
<option>différents</option>
|
|
</select>
|
|
</span>
|
|
pour chaque jour.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h1>Les choix <span>(au format JJ / MM / AAAA)</span></h1>
|
|
<ul>
|
|
<li>
|
|
<i class="far fa-calendar-alt"></i>
|
|
<input type="date" name="date-1">
|
|
<button class="remove btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
<ul class="horaire-different" style="display:none">
|
|
<li>
|
|
<i class="far fa-chrono-alt"></i>
|
|
<input type="text" name="horaire-1">
|
|
<button class="remove btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<i class="far fa-calendar-alt"></i>
|
|
<input type="date" name="date-2">
|
|
<button class="remove btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
<ul class="horaire-different" style="display:none">
|
|
<li>
|
|
<i class="far fa-chrono-alt"></i>
|
|
<input type="text" name="horaire-2">
|
|
<button class="remove btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<button id="addDateButton" class="btn btn-secondary">Ajouter une date</button>
|
|
|
|
<ul class="horaire-identique" style="display:none">
|
|
<li>
|
|
<i class="far fa-chrono-alt"></i>
|
|
<input type="text" name="horaire-1">
|
|
<button class="remove btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
</li>
|
|
</ul>
|
|
<button class="horaire-identique" style="display:none" id="addDateButton">Ajouter un horaire</button>
|
|
|
|
|
|
</section>
|
|
|
|
<nav>
|
|
<a href="recapitulatif.html" class="btn btn-primary next">Continuer</a>
|
|
</nav>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |