Solution:
Several things to fix:
- The
p
parameter should be removed. - The
url
parameter which is the URL of the website to be analysed is missing in your form. - The submit button is outside the form, so it doesn’t do anything
- The
output
andref
parameters are missing. Since they are fixed they can just be hardcoded as hidden.
Here’s the complete code for the form.
<form method="get" action="https://itzfizz.com/seo-analyzer/">
<input type="hidden" name="output" value="html"/>
<input type="hidden" name="ref" value="https://itzfizz.com/seo-analyzer/"/>
<input type="url" name="url" placeholder="https://www.yoursite.com" />
<button type="submit">Analyze Website</button>
</form>