This commit is contained in:
David Reed 2022-11-19 18:02:52 -05:00
parent d819008df2
commit 7f2037ae69
No known key found for this signature in database
GPG key ID: 2211691D8A1EE72F
2 changed files with 4 additions and 4 deletions

View file

@ -80,8 +80,8 @@
</p>
</div>
<form class="flex-center">
<input placeholder="Search the web freely" />
<form id="uv-form" class="flex-center">
<input id="uv-address" placeholder="Search the web freely" />
</form>
<p id="error"></p>
<code id="error-code"></code>

View file

@ -1,5 +1,5 @@
const form = document.querySelector("form");
const input = document.querySelector("input");
const form = document.querySelector("#uv-form");
const input = document.querySelector("#uv-address");
const error = document.querySelector("#error");
const errorCode = document.querySelector("#error-code");