Removed favicon error and fixed an issue where you could not wrote nothing in a text box and save it

This commit is contained in:
2024-03-04 14:21:11 -05:00
parent a23205060c
commit c0111e5c2c
2 changed files with 7 additions and 13 deletions

View File

@@ -50,7 +50,7 @@
{% endif %}
{% endfor %}
<div class='inputField'>
<input type="number" style="text-align:center;" id="numberInput" name="numberInput" value="{{ ns.count }}" pattern="\d+" required>
<input type="tel" style="text-align:center;" id="numberInput" name="numberInput" value="{{ ns.count }}" pattern="\d+">
<button class="square-button" type="submit">
<img src="/static/save.svg" alt="Save Icon">
</button>
@@ -115,7 +115,7 @@
{% endif %}
{% endfor %}
<div class='inputField'>
<input type="number" style="text-align:center;" id="numberInput" name="numberInput" value="{{ ns.count }}" pattern="\d+" required>
<input type="tel" style="text-align:center;" id="numberInput" name="numberInput" value="{{ ns.count }}" pattern="\d+">
<button class="square-button" type="submit">
<img src="/static/save.svg" alt="Save Icon">
</button>