mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
63 lines
1.7 KiB
HTML
63 lines
1.7 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 <select><option>veux</option><option>ne veux pas</option></select> ajouter des horaires
|
|
<select><option>identiques</option><option>différents</option></select> pour chaque jour.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h1>Mes dates <span>(au format JJ / MM / AAAA)</span></h1>
|
|
<ul>
|
|
<li>
|
|
<i class="far fa-calendar-alt"></i>
|
|
<label>Date</label>
|
|
<input type="date" name="date-1">
|
|
<button class="btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
</li>
|
|
|
|
<li class="item-disabled">
|
|
<i class="far fa-calendar-alt"></i>
|
|
<label>Date</label>
|
|
<input type="date" name="date-2" disabled>
|
|
<button class="btn-no-style"><i class="fas fa-trash-alt"></i></button>
|
|
</li>
|
|
</ul>
|
|
|
|
<button>Ajouter une plage de date</button>
|
|
</section>
|
|
|
|
<nav>
|
|
<a href="recapitulatif.html" class="btn next">Continuer</a>
|
|
</nav>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|