Add A Form
From Frontal Wiki
Adding a form is done with the 'form' and 'input' tags.
<form action="http://www.frontalcode.com/" onSuccess="com.frontalcode.Debugger.msg ( 'form submitted' );"> Login: <input type="text" name="login" /> Password: <input type="password" name="password" /> <input type="submit" name="submit" value="clicked">Submit</input> </form>
Frontal supports many input types, including text inputs, password inputs, buttons, checkboxes, radio buttons, file inputs, combo-boxes, text areas and steppers. Moreover, it's easy to add more. And as is customary with Frontal, if you don't like the way these inputs look and act, it's a straightforward task to change them. For more details, see the section on the 'form' tag.