wrap button in <a> tag

This commit is contained in:
alexveebee 2025-04-24 17:04:29 +00:00
parent cb06845cc7
commit 416ac88407

View File

@ -46,12 +46,12 @@
</ul>
{% if errors %}
<p style="text-align:center;color:#d00"><strong>Warning:</strong> Ignoring these problems is not recommended and may cause installation issues.</p>
<p style="text-align:center"><button onclick="window.location.href='?step=2'">Proceed Anyway</button></p>
<p style="text-align:center"><a href="?step=2"><button>Proceed Anyway</button></a></p>
{% else %}
<p style="text-align:center"><button onclick="window.location.href='?step=2'">Next</button></p>
<p style="text-align:center"><a href="?step=2"><button>Next</button></a></p>
{% endif %}
{% else %}
<p>There were no errors or warnings. Good!</p>
<p style="text-align:center"><button onclick="window.location.href='?step=2'">Next</button></p>
<p style="text-align:center"><a href="?step=2"><button>Next</button></a></p>
{% endif %}
</div>