2018-09-25 23:16:17 +02:00
<!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" >
2018-11-20 10:48:59 +01:00
< link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity = "sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin = "anonymous" >
2018-09-25 23:16:17 +02:00
< / head >
< body >
< section >
< em > Ici un calendier< / em >
< / section >
< section >
2019-03-19 14:44:09 +01:00
< p > Je veux ajouter des dates < select id = "ajouterDesHoraires" > < option > sans< / option > < option > avec des< / option > < / select > horaires< span id = "identiquesDifferentsPourChaqueJour" style = "display:none" > < select > < option > identiques< / option > < option > différents< / option > < / select > pour chaque jour< / span > .< / p >
2018-09-25 23:16:17 +02:00
< / section >
< section >
2018-11-20 10:48:59 +01:00
< h1 > Mes dates < span > (au format JJ / MM / AAAA)< / span > < / h1 >
2018-10-26 22:41:10 +02:00
< ul >
2018-11-20 10:48:59 +01:00
< li >
< i class = "far fa-calendar-alt" > < / i >
< input type = "date" name = "date-1" >
2018-11-27 23:55:54 +01:00
< button class = "remove btn-no-style" > < i class = "fas fa-trash-alt" > < / i > < / button >
2018-11-20 10:48:59 +01:00
< / li >
2018-10-26 22:41:10 +02:00
< / ul >
2018-11-27 23:55:54 +01:00
< button id = "addDateButton" > Ajouter une date< / button >
2018-09-25 23:16:17 +02:00
< / section >
< nav >
2018-11-26 10:41:00 +01:00
< a href = "recapitulatif.html" class = "btn btn-primary next" > Continuer< / a >
2018-09-25 23:16:17 +02:00
< / nav >
2018-09-26 23:05:55 +02:00
2018-10-08 22:47:50 +02:00
< script src = "script.js" > < / script >
2018-09-26 23:05:55 +02:00
2018-09-25 23:16:17 +02:00
< / body >
< / html >