Merge pull request #317 from Carif/master

HTML form : change get to post, remove accept-charset
This commit is contained in:
Holger Rapp 2014-03-04 17:37:31 +01:00
commit 85801cadcc

View File

@ -361,15 +361,15 @@ snippet footer#
${0} ${0}
</footer> </footer>
snippet form snippet form
<form action="${1}" method="${2:get}" accept-charset="utf-8"> <form action="${1}" method="${2:post}">
${0} ${0}
</form> </form>
snippet form. snippet form.
<form class="${1}" action="${2}" method="${3:get}" accept-charset="utf-8"> <form class="${1}" action="${2}" method="${3:post}">
${0} ${0}
</form> </form>
snippet form# snippet form#
<form id="${1}" action="${2}" method="${3:get}" accept-charset="utf-8"> <form id="${1}" action="${2}" method="${3:post}">
${0} ${0}
</form> </form>
snippet h1 snippet h1