BUG: Invalid HTML on Donations Payment Form
Clint Pachl <[email protected]>
| Newsgroups | gmane.os.openbsd.www,gmane.os.openbsd.bugs |
|---|---|
| Message-ID | <[email protected]> |
I discovered an error in the HTML source code of the donations payment page titled "OpenBSD Donations -> How Will You Be Paying?". First, there are two form tags. The first one is not closed; therefore, this page may not render correctly in some browsers, which is counter-intuitive to you getting money. You may also want to choose the correct form content type. Here's a snippet of the source: <form method="post"action="/cgi-bin/donations"enctype="application/x-www-form-urlencoded"> ... <form method="post"action="/cgi-bin/donations"enctype="multipart/form-data"> ... </form>