Commit d8e392df authored by Okthane's avatar Okthane

Fonction-cancel-image

parent 0dfd5937
{
"editor.mouseWheelZoom": true
}
\ No newline at end of file
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
<input id="btnSubmit" type="submit" name="submit" value="Vérifier" class="btn-form"> <input id="btnSubmit" type="submit" name="submit" value="Vérifier" class="btn-form">
</div> </div>
</form> </form>
<button id ="cancel" type="button">Annuler</button>
<script> <script>
const inpFile = document.getElementById("fileUpload"); const inpFile = document.getElementById("fileUpload");
......
...@@ -8,7 +8,8 @@ const URL_END = 'byebye.html'; ...@@ -8,7 +8,8 @@ const URL_END = 'byebye.html';
const timeout = 5000; const timeout = 5000;
const ID = "img-ID"; const ID = "img-ID"; var Img;
const ID_bg = "img-ID2"; var ImgBG
const canva = "canvas"; const canva = "canvas";
// console.log($("#"+ID).attr('src')); // console.log($("#"+ID).attr('src'));
...@@ -20,6 +21,9 @@ const idBtnSubmit = 'btnSubmit';var btnSubmit; ...@@ -20,6 +21,9 @@ const idBtnSubmit = 'btnSubmit';var btnSubmit;
const idStatut = "span-status"; const idStatut = "span-status";
//Variables concernant le bouton "Annuler"
const idCancel = "cancel"; var btnCancel;
var errorFormat = true; var errorFormat = true;
var errorRemoveBackGround = true; var errorRemoveBackGround = true;
...@@ -27,6 +31,8 @@ var unSeulVisage = false; ...@@ -27,6 +31,8 @@ var unSeulVisage = false;
var format_correct = false; var format_correct = false;
// SCRIPT ==================================================================================== // SCRIPT ====================================================================================
$(document).ready(function(){ $(document).ready(function(){
...@@ -34,11 +40,16 @@ $(document).ready(function(){ ...@@ -34,11 +40,16 @@ $(document).ready(function(){
// console.log(inputFileUpload.val()); // console.log(inputFileUpload.val());
console.log(getParameter(window.location.href)); console.log(getParameter(window.location.href));
btnCustomFileUpload = $("#"+idCustomFileUpload); btnCustomFileUpload = $("#"+idCustomFileUpload);
Img = $("#"+ID);
ImgBG = $("#"+ID_bg);
btnSubmit = $("#"+idBtnSubmit); btnSubmit = $("#"+idBtnSubmit);
btnCancel = $("#"+idCancel);
Console = $("#"+idConsole); Console = $("#"+idConsole);
//empêcher de valider si la photo n'est pas valide //empêcher de valider si la photo n'est pas valide
inputFileUpload.change(function(){unSeulVisage=false;format_correct=false}); inputFileUpload.change(function(){unSeulVisage=false;format_correct=false});
//requête pour les vérifications de sécurité //Requête pour les vérifications de sécurité & de format
$("#form").on("submit",function (event) { $("#form").on("submit",function (event) {
event.preventDefault(); event.preventDefault();
var formData = new FormData(this); var formData = new FormData(this);
...@@ -94,15 +105,15 @@ $(document).ready(function(){ ...@@ -94,15 +105,15 @@ $(document).ready(function(){
}); });
//Etape du choix de l'addresse mail. //Récupération des données concernant l'étudiant & proposition des différentes addresses mail.
studentId = getParameter(window.location.href); studentId = getParameter(window.location.href);
$.ajax({ $.ajax({
url: URL_WEB_API, url: URL_WEB_API,
method: 'POST', method: 'POST',
data: 'studentId='+studentId, data: 'studentId='+studentId,
dataType: "json" dataType: "json"
}) })
.done(function(response){ .done(function(response){
// let data = JSON.stringify(response); // let data = JSON.stringify(response);
// $("div#res").append(data); // $("div#res").append(data);
let data = response; let data = response;
...@@ -139,6 +150,15 @@ $(document).ready(function(){ ...@@ -139,6 +150,15 @@ $(document).ready(function(){
$("body").append(`<h3>Votre adresse électronique sera ${mail}, vous recevrez votre mot de passe dans les 24 heures.</h3>`); $("body").append(`<h3>Votre adresse électronique sera ${mail}, vous recevrez votre mot de passe dans les 24 heures.</h3>`);
} }
}) })
//Lorsque l'utilisateur souhaite changer d'image
btnCancel.on('click', function(){
unSeulVisage = false;
format_correct = false;
ImgBG.attr('src',"");
Img.attr('src',"");
$("#li-oneface").css('color','black');
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment