I think there could be an interesting form design for terminals that is similar to a web form. I think one of the reasons why green screen applications are considered old and people are scared of them is because everything feels stateful. It feels like if you do something, it could have lasting consequences. A web page however is much more ephemeral. If you press F5 or navigate away, everything is gone and you haven't changed anything.
It also helps that you click anywhere and start anywhere with a web form. The colors also help massively along with the spacing of things. It feels much more welcoming. Possibly. This is something I really want to study and learn why people prefer web applications and their ilk over a green screen data entry routine.
Anyway, a design I've been thinking about is something like this:
<form action="VALIDATE.FORM">
<input type="text" name="NAME" required>
<input type="date" name="BIRTHDAY" subroutine="CALCULATE.AGE">
<input type="text" name="EMAIL" validation="VALIDATE.EMAIL">
<select name="FAVORITE.COLOR">
<option value="RED">Red</option>
<option value="BLUE">Blue</option>
</select>
<select name="ANIMAL" multiple>
<option value="KANGAROO">Kangaroo</option>
<option value="Giraffe">Giraffe</option>
</select>
</form>
A very straight rip of an html form. I think a parser in BASIC could build this out and give a relatively decent form.
I would want the paging keys, tab key, and the ctrl keys to work as they normally do, meaning tabs will move to different fields and Esc will exit things. Shift tab should go back up one.
I wonder if having the mouse click on an input should bring it into focus. It might be useful.
I would also want subscreens to be visually shown so you know where you are.
This is all mostly just rambling. Not sure if this is actually a good idea or not.