index-js.html (344B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <!-- This file is in the public domain --> 4 <head> 5 <title>A donation button</title> 6 </head> 7 <body> 8 <!-- NOTE, we hit a HTML page now, instead of some PHP script --> 9 <form action='/donate-js.html' method='GET'> 10 <input type='submit' value='Donate!'></input> 11 </form> 12 </body> 13 </html>