I developed a website that contains submit buttons that are linked to other pages on my website. I used the action attribute for the links, but it happens that GitHub doesn't support action attributes (HTTP). Is there another way that I can link my submit buttons to other pages but without using the action attribute? Note: the submit button should be inside a form.
<form method="POST" action="../pages/home2.html" target="_self">
<input type="text" name="username" value="" placeholder="username here" required/>
<input type="submit" value="Submit" name="submit"/>
</form>
Whenever I click to submit, a 405 problem occurs (not allowed). Help appreciated
POSTrequest to a simple HTML page? Who/what is reading the post data? Does it work when you useGETinstead?