diff --git a/static/js/main.js b/static/js/main.js index 59fc839..20d13f9 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -767,7 +767,7 @@ $('#demande-button').click(function () { }); }); -var saved_form = $('#login-form').html(); +var saved_form = $('#demande-form').html(); function is_locked() { @@ -790,9 +790,9 @@ function updateDemandes() { success: function(data) { if(data.success) { if(data.state == "open") { - $('#login-form').html(saved_form); + $('#demande-form').html(saved_form); } else { - $('#login-form').html('

Les commandes sont fermés pour le moment mais on revient vite !

'); + $('#demande-form').html('

Les commandes sont fermés pour le moment mais on revient vite !

'); } } }