| @@ -1,113 +1,114 @@ | ||
| <script> | ||
| document.body.style.backgroundColor = "#000000"; | ||
| </script> | ||
|
|
||
| <!-- preloader --> | ||
| <div class="loading"> | ||
| <div class="loader"><img src="<?= WEBROOT ?>public/images/puff.svg" alt="puff.svg"> | ||
| </div> | ||
| </div> | ||
|
|
||
| <!-- start navigation --> | ||
| <?php //include 'nav.php';?> | ||
|
|
||
| </div> | ||
| <div class="section-wrapper"> | ||
| <div class="w-nav w-hidden-main responsive-nav" data-collapse="medium" data-animation="over-left" data-duration="400" data-contain="1"> | ||
| <div class="w-container"> | ||
| <a class="w-nav-brand brand-res" href="<?= WEBROOT ?>"><img src="<?= WEBROOT ?>public/images/logo.png" width="70" alt="<?= WEBROOT ?>public/logo.png"> | ||
| </a> | ||
|
|
||
| <!-- start responsive navigation --> | ||
| <nav class="w-nav-menu res-menu" role="navigation"> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="li-nav"><a class="nav-link active" href="<?= WEBROOT ?>">August BUI</a> | ||
| <div class="sub-nav">Parce qu'au fond il y a la couleur, la forme ne reste qu'un langage</div> | ||
| </li> | ||
| <li> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/">3 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>">4 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/five/">5 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
| <li class="li-nav"><a class="nav-link" href="contact.html">Contact</a> | ||
| <div class="sub-nav">En savoir plus</div> | ||
| </li> | ||
| </ul> | ||
| </nav><!-- end responsive navigation --> | ||
| <div class="w-nav-button menu-button"> | ||
| <div class="w-icon-nav-menu"></div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="move-wrapper"> | ||
|
|
||
| <!-- portfolio filter --> | ||
| <div class="w-hidden-tiny w-clearfix div-social"> | ||
| <div class="filters"> | ||
| <h3 style="display: block; float: left; margin: 0;"><?= $view['selectedSerie']->Label ?></h3> | ||
| <ul class="w-list-unstyled filter-list"> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">All</a> | ||
| </li> | ||
| <?php foreach ($view['tags'] as $tag): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($tag->Label) ?>"><?= $tag->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php foreach ($view['tags'] as $s): ?> | ||
| <div class="filters" id="<?= $s->Label ?>" style="display: none;"> | ||
| <ul class="w-list-unstyled filter-list" id="menu-filter"> | ||
| <?php foreach ($s->Tags as $t): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($t->Label) ?>"><?= $t->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">Retour</a> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input type="hidden" id="webroot" value="<?= WEBROOT ?>"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php endforeach; ?> | ||
| </div><!-- end portfolio filter --> | ||
|
|
||
| <!-- start portfolio --> | ||
| <div class="w-clearfix grid" id="Grid"> | ||
| <?php foreach ($view['photos'] as $photo) { ?> | ||
| <div class="mix mix-3 star <?= strtolower($photo->Serie->Label) ?> <?= strtolower($photo->Tag->Label) ?>" data-ix="hover-port"><a class="w-inline-block tittle-wrapper" href="<?= WEBROOT ?>photos/display/<?= $photo->id ?>"><h4 class="text-port" data-ix="move-up"><?= $photo->Label ?></h4><div class="sub-text" data-ix="move-up-2">Cliquer ici pour plus d'infos</div></a> | ||
| <div class="img-wrapper"><img src="<?= WEBROOT ?>public/uploaded/<?= $photo->Fichier ?>" alt="port1.jpg"> | ||
| <div class="triangle"> | ||
| <div class="left-star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <?php } ?> | ||
|
|
||
| </div><!-- end portfolio --> |
| @@ -1,118 +1,119 @@ | ||
| <script> | ||
| document.body.style.backgroundColor = "#000000"; | ||
| </script> | ||
|
|
||
| <!-- preloader --> | ||
| <div class="loading"> | ||
| <div class="loader"><img src="<?= WEBROOT ?>public/images/puff.svg" alt="puff.svg"> | ||
| </div> | ||
| </div> | ||
|
|
||
| <!-- start navigation --> | ||
| <?php //include 'nav.php';?> | ||
|
|
||
| </div> | ||
| <div class="section-wrapper"> | ||
| <div class="w-nav w-hidden-main responsive-nav" data-collapse="medium" data-animation="over-left" data-duration="400" data-contain="1"> | ||
| <div class="w-container"> | ||
| <a class="w-nav-brand brand-res" href="<?= WEBROOT ?>"><img src="<?= WEBROOT ?>public/images/logo.png" width="70" alt="<?= WEBROOT ?>public/logo.png"> | ||
| </a> | ||
|
|
||
| <!-- start responsive navigation --> | ||
| <nav class="w-nav-menu res-menu" role="navigation"> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="li-nav"><a class="nav-link active" href="<?= WEBROOT ?>">August BUI</a> | ||
| <div class="sub-nav">Parce qu'au fond il y a la couleur, la forme ne reste qu'un langage</div> | ||
| </li> | ||
| <li> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/">3 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>">4 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/five/">5 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <?php foreach ($view['series'] as $s): ?> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/four/<?= $s->id ?>"><?= $s->Label ?></a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| </ul> | ||
| </li> | ||
| <li class="li-nav"><a class="nav-link" href="contact.html">Contact</a> | ||
| <div class="sub-nav">En savoir plus</div> | ||
| </li> | ||
| </ul> | ||
| </nav><!-- end responsive navigation --> | ||
| <div class="w-nav-button menu-button"> | ||
| <div class="w-icon-nav-menu"></div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="move-wrapper"> | ||
|
|
||
| <!-- portfolio filter --> | ||
| <div class="w-hidden-tiny w-clearfix div-social"> | ||
| <div class="filters"> | ||
| <h3 style="display: block; float: left; margin: 0;"><?= $view['selectedSerie']->Label ?></h3> | ||
| <ul class="w-list-unstyled filter-list"> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">All</a> | ||
| </li> | ||
| <?php foreach ($view['tags'] as $tag): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($tag->Label) ?>"><?= $tag->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php foreach ($view['tags'] as $s): ?> | ||
| <div class="filters" id="<?= $s->Label ?>" style="display: none;"> | ||
| <ul class="w-list-unstyled filter-list" id="menu-filter"> | ||
| <?php foreach ($s->Tags as $t): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($t->Label) ?>"><?= $t->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">Retour</a> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input type="hidden" id="webroot" value="<?= WEBROOT ?>"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php endforeach; ?> | ||
| </div><!-- end portfolio filter --> | ||
|
|
||
| <!-- start portfolio --> | ||
| <div class="w-clearfix grid" id="Grid"> | ||
| <?php foreach ($view['photos'] as $photo) { ?> | ||
| <div class="mix mix-4 star <?= strtolower($photo->Serie->Label) ?> <?= strtolower($photo->Tag->Label) ?>" data-ix="hover-port"><a class="w-inline-block tittle-wrapper" href="<?= WEBROOT ?>photos/display/<?= $photo->id ?>"><h4 class="text-port" data-ix="move-up"><?= $photo->Label ?></h4><div class="sub-text" data-ix="move-up-2">Cliquer ici pour plus d'infos</div></a> | ||
| <div class="img-wrapper"><img src="<?= WEBROOT ?>public/uploaded/<?= $photo->Fichier ?>" alt="port1.jpg"> | ||
| <div class="triangle"> | ||
| <div class="left-star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <?php } ?> | ||
|
|
||
| </div><!-- end portfolio --> |
| @@ -1,113 +1,114 @@ | ||
| <script> | ||
| document.body.style.backgroundColor = "#000000"; | ||
| </script> | ||
|
|
||
| <!-- preloader --> | ||
| <div class="loading"> | ||
| <div class="loader"><img src="<?= WEBROOT ?>public/images/puff.svg" alt="puff.svg"> | ||
| </div> | ||
| </div> | ||
|
|
||
| <!-- start navigation --> | ||
| <?php //include 'nav.php';?> | ||
|
|
||
| </div> | ||
| <div class="section-wrapper"> | ||
| <div class="w-nav w-hidden-main responsive-nav" data-collapse="medium" data-animation="over-left" data-duration="400" data-contain="1"> | ||
| <div class="w-container"> | ||
| <a class="w-nav-brand brand-res" href="<?= WEBROOT ?>"><img src="<?= WEBROOT ?>public/images/logo.png" width="70" alt="<?= WEBROOT ?>public/logo.png"> | ||
| </a> | ||
|
|
||
| <!-- start responsive navigation --> | ||
| <nav class="w-nav-menu res-menu" role="navigation"> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="li-nav"><a class="nav-link active" href="<?= WEBROOT ?>">August BUI</a> | ||
| <div class="sub-nav">Parce qu'au fond il y a la couleur, la forme ne reste qu'un langage</div> | ||
| </li> | ||
| <li> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/">3 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>">4 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/five/">5 oeuvres par ligne</a> | ||
| <div class="line"></div> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
| <li class="li-nav"><a class="nav-link" href="contact.html">Contact</a> | ||
| <div class="sub-nav">En savoir plus</div> | ||
| </li> | ||
| </ul> | ||
| </nav><!-- end responsive navigation --> | ||
| <div class="w-nav-button menu-button"> | ||
| <div class="w-icon-nav-menu"></div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="move-wrapper"> | ||
|
|
||
| <!-- portfolio filter --> | ||
| <div class="w-hidden-tiny w-clearfix div-social"> | ||
| <div class="filters"> | ||
| <h3 style="display: block; float: left; margin: 0;"><?= $view['selectedSerie']->Label ?></h3> | ||
| <ul class="w-list-unstyled filter-list"> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">All</a> | ||
| </li> | ||
| <?php foreach ($view['tags'] as $tag): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($tag->Label) ?>"><?= $tag->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php foreach ($view['tags'] as $s): ?> | ||
| <div class="filters" id="<?= $s->Label ?>" style="display: none;"> | ||
| <ul class="w-list-unstyled filter-list" id="menu-filter"> | ||
| <?php foreach ($s->Tags as $t): ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter=".<?= strtolower($t->Label) ?>"><?= $t->Label ?></a> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| <li class="filter-iterm"><a class="filter" href="#" data-filter="all">Retour</a> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <form method="POST" action="<?= WEBROOT ?>photos/search"> | ||
| <input type="hidden" id="webroot" value="<?= WEBROOT ?>"> | ||
| <input class="filter" type="text" id="search" name="searchString" placeholder="Recherche"> <button class="filter" type="submit" id="searchPhoto">Go</button> | ||
| </form> | ||
| </li> | ||
| <li class="filter-iterm"> | ||
| <a class="w-inline-block filter filter-star" href="#" data-filter=".star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| <?php endforeach; ?> | ||
| </div><!-- end portfolio filter --> | ||
|
|
||
| <!-- start portfolio --> | ||
| <div class="w-clearfix grid" id="Grid"> | ||
| <?php foreach ($view['photos'] as $photo) { ?> | ||
| <div class="mix mix-5 star <?= strtolower($photo->Serie->Label) ?> <?= strtolower($photo->Tag->Label) ?>" data-ix="hover-port"><a class="w-inline-block tittle-wrapper" href="<?= WEBROOT ?>photos/display/<?= $photo->id ?>"><h4 class="text-port" data-ix="move-up"><?= $photo->Label ?></h4><div class="sub-text" data-ix="move-up-2">Cliquer ici pour plus d'infos</div></a> | ||
| <div class="img-wrapper"><img src="<?= WEBROOT ?>public/uploaded/<?= $photo->Fichier ?>" alt="port1.jpg"> | ||
| <div class="triangle"> | ||
| <div class="left-star"> | ||
| <i class="fa fa-star fa-2x"></i> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <?php } ?> | ||
|
|
||
| </div><!-- end portfolio --> |
| @@ -0,0 +1,123 @@ | ||
| <script type="text/javascript"> | ||
| var msg = ""; | ||
| function getUrlParameter(sParam) | ||
| { | ||
| var sPageURL = window.location.search.substring(1); | ||
| var sURLVariables = sPageURL.split('&'); | ||
| for (var i = 0; i < sURLVariables.length; i++) | ||
| { | ||
| var sParameterName = sURLVariables[i].split('='); | ||
| if (sParameterName[0] == sParam) | ||
| { | ||
| return sParameterName[1]; | ||
| } | ||
| } | ||
| } | ||
| function urldecode(str) { | ||
| return decodeURIComponent((str + '').replace(/\+/g, '%20')); | ||
| } | ||
|
|
||
| $(document).ready(function () { | ||
|
|
||
| $('#msg').hide(); | ||
|
|
||
| msg = unescape((getUrlParameter('msg'))); | ||
| console.log(msg); | ||
| if (msg != "" && msg !== undefined && msg != "undefined") { | ||
| $('#msg').append(msg); | ||
| $('#msg').show(); | ||
|
|
||
| } | ||
|
|
||
| $("#save-intro").click(function (event) { | ||
| event.preventDefault(); | ||
|
|
||
| if (!$("#intro-text").val() == "" || !$("#intro-text").val() == undefined) { | ||
| $('#save-intro-form').submit(); | ||
| } | ||
| else { | ||
| $('#form-error').remove(); | ||
| $('#save-intro-form').prepend('<div id="form-error" class="alert alert-danger">Veuillez remplir le champs<div>'); | ||
| } | ||
| }); | ||
|
|
||
| }); | ||
| </script> | ||
| <!-- preloader --> | ||
| <div class="loading"> | ||
| <div class="loader"><img src="<?= WEBROOT ?>public/images/puff.svg" alt="<?= WEBROOT ?>public/images/puff.svg"> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="section-wrapper"> | ||
| <div class="w-nav w-hidden-main responsive-nav" data-collapse="medium" data-animation="over-left" data-duration="400" data-contain="1"> | ||
| <div class="w-container"> | ||
| <a class="w-nav-brand brand-res" href="<?= WEBROOT ?>"><img src="<?= WEBROOT ?>public/images/logo-resp.png" width="150" alt="<?= WEBROOT ?>public/logo.png"> | ||
| </a> | ||
|
|
||
| <nav class="w-nav-menu res-menu" role="navigation"> | ||
| <ul class="w-list-unstyled"> | ||
| <li class="li-nav"><a class="nav-link active" href="<?= WEBROOT ?>home/introduction">Introduction</a> | ||
| </li> | ||
| <li> | ||
| <ul class="w-list-unstyled"> | ||
| <?php foreach ($view['series'] as $s): ?> | ||
| <li class="sub-li"><a class="subnav-link" href="<?= WEBROOT ?>format/four/<?= $s->id ?>"><?= $s->Label ?></a> | ||
| <div class="line"></div> | ||
| </li> | ||
| <?php endforeach; ?> | ||
| </ul> | ||
| </li> | ||
| <li class="li-nav"><a class="nav-link" href="http://fr-fr.facebook.com/people/Auguste-Bui/100000277766236" target="blank">Contact</a> | ||
| <div class="sub-nav">En savoir plus</div> | ||
| </li> | ||
| </ul> | ||
| </nav><!-- end responsive navigation --> | ||
| <div class="w-nav-button menu-button"> | ||
| <div class="w-icon-nav-menu"></div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="move-wrapper"> | ||
|
|
||
| <!-- Admin Menu --> | ||
| <div class="w-hidden-tiny w-clearfix div-social admin-menu"> | ||
| <div class="w-clearfix filters"> | ||
| <ul class="w-list-unstyled filter-list"> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/logout" >Déconnexion</a> | ||
| </li> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/introduction" >Introduction</a> | ||
| </li> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/" >Gestion Générale</a> | ||
| </li> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/newPhoto" >Ajout Photo</a> | ||
| </li> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/series" >Séries</a> | ||
| </li> | ||
| <li class="filter-iterm"><a class="filter change" href="<?= WEBROOT ?>manage/tags" >Tags</a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div><!-- end of Admin Menu --> | ||
|
|
||
| <div class="w-container"> | ||
| <div id="msg" class="alert alert-success"> | ||
| </div> | ||
| <div class="mrg-top-bis"> | ||
|
|
||
| <h3>Bienvenu Philippe<span class="ex-sp"></span></h3> | ||
| <div class="line-con-bis"></div> | ||
| </div> | ||
| <p>Ci-dessous le formulaire de modification de l'introduction</p> | ||
|
|
||
| <h4>Formulaire de modification : </h4> | ||
|
|
||
| <form id="save-intro-form" role="form" method="POST" action="<?= WEBROOT ?>manage/updateIntroduction"> | ||
| <div class="form-group"> | ||
| <label for="exampleInputEmail1">introduction</label> | ||
| <textarea id="intro-text" rows="10" class="form-control" placeholder="Introduction" name="text"><?= $view['intro']->Text ?></textarea> | ||
| </div> | ||
| <button id="save-intro" type="submit" class="btn btn-default">Modifier</button> | ||
| </form> | ||
| </div> | ||
|
|