My index html file features a chat window designed like this:
https://i.sstatic.net/PPGoy.png
Below the submit button is an area to input text. How can I hide or disable this section and enable it only after the form is filled and the submit button is clicked? I attempted to hide the div class but encountered an error.
Here is the relevant HTML code:
<html>
<head>
<title>Chatbot</title>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:500&display=swap" rel="stylesheet">
...