Forms with an <input type="submit" value="Confirm" formmethod="post" formaction="/sponsorship" formenctype="multipart/form-data" /> should submit the form rather than close the dialog.
Currently because of `ev.preventDefault()' in the 'submit' eventlistener it prevents the form being submitted.
Current Behaviour: Dialog closes.
Expected Behaviour: Form should be posted to the URL.
Forms with an
<input type="submit" value="Confirm" formmethod="post" formaction="/sponsorship" formenctype="multipart/form-data" />
should submit the form rather than close the dialog.Currently because of `ev.preventDefault()' in the 'submit' eventlistener it prevents the form being submitted.
Current Behaviour: Dialog closes.
Expected Behaviour: Form should be posted to the URL.