Submit button added to POST form

Added Submit button to generated POST form to allow manual submit
in case user has JS disabled
This commit is contained in:
Tomas Pazderka
2014-05-29 14:00:48 +02:00
parent 8286b6769d
commit f39ab6af15

View File

@@ -53,6 +53,7 @@ NAMESPACE = "http://schemas.xmlsoap.org/soap/envelope/"
FORM_SPEC = """<form method="post" action="%s"> FORM_SPEC = """<form method="post" action="%s">
<input type="hidden" name="%s" value="%s" /> <input type="hidden" name="%s" value="%s" />
<input type="hidden" name="RelayState" value="%s" /> <input type="hidden" name="RelayState" value="%s" />
<input type="submit" value="Submit" />
</form>""" </form>"""