https://kaltonetracks.com/
Hi all, i’m trying to deploy (manually) my site files (in HTML) as i want to update it. Everything looks fine except the submission form w/ custom redirect thankyou.html page getting 404 not found.The thing is that all went well 2 days ago receiving subs with no issues! Also as a possible solution i re enable the form detection and upload the site again but still getting the 404 message😢
However here’s my doc
<div class="box">
<form
action="thankyou.html"
name="thankyou"
method="post"
data-netlify="true"
>
<div class="form-box">
<input type="text" name="name" placeholder="Your Name" />
<input
type="text"
name="Email"
placeholder=" Your Email Address"
required
/>
<input type="hidden" name="next" value="thankyou" />
<button type="submit">
<i class="fa-sharp fa-solid fa-envelope"></i> Subscribe
</button>
</div>
</form>
</div>
any advise will much appreciated . Thanks !