I am trying to make and app, with html and JavaScript, that I can submit data through a text input and recall it later through another text input. The idea of this app is to submit words that I have already used in my Chinese lesson and then, when I prepare another lesson, to be able to search through this app if I have used a specific word before or not.
I left my code below. I know this is probably a very basic thing, but I tried to research it and I didn't find anything specific enough:
<!DOCTYPE html>
<html>
<body>
<form>
<input type="text" id="textbox2" placeholder="Submit here" required>
</form>
<form>
<input type="text" id="textbox1" placeholder="Search here" required>
</form>
<script type="text/javascript">
</script>
</body>
</html>