Removed Vanilla Form Submission
authorParker Berberian <pberberian@iol.unh.edu>
Wed, 28 Nov 2018 18:38:45 +0000 (13:38 -0500)
committerParker Berberian <pberberian@iol.unh.edu>
Wed, 28 Nov 2018 18:38:45 +0000 (13:38 -0500)
commit1bca75075deaa0922946194173def8e4cf6fb985
tree69ea70e75c34ba75e408b05b39a510749abbee75
parentb361d6df77ab59bb0f227aec00c19b080f31bc50
Removed Vanilla Form Submission

On google chrome, using vanilla html forms, eg:
document.getElementById("Form_id").submit();
does not properly set the CSRF header from the cookies.
This results in 403 unauthorized errors in chrome when doing certain things.

This is possibly an issue to do with how chrome handles iframes differently from firefox.

To fix, we replaced basic forms with serialized XMLHttpRequests,
which are more common in this codebase anyway.

Change-Id: I93e92cd326c8bba47408b66a95d9d5d806c154f6
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
src/templates/dashboard/landing.html
src/templates/resource/steps/meta_info.html
src/templates/resource/steps/pod_definition.html
src/templates/workflow/confirm.html