INPUTS

Input is used to create interactive controls for web-based forms in order to accept data from the user. WALDO has varieties of input styles available.

Simple Input

This is a simple input with a textarea and a submit button and is customisable according to the user interface. You can copy html part from below code snippet.

Code Example

<div class="textarea-container"> <textarea class="textarea" placeholder="Write something here..."></textarea> <button class="btn-submit">Submit</button> </div>