| <html> |
| <head> |
| <title>inputs</title> |
| </head> |
| <body> |
| <h1>Testing Inputs</h1> |
| |
| <form action="#"> |
| <input name="no_type" value="input with no type" /><br/> |
| <br/> |
| <input name="number_input" type="number" value="42" /><br/> |
| <input name="range_input" type="range" value="42" /><br/> |
| <br/> |
| <input name="email_input" type="email" value="admin@localhost" /><br/> |
| <input name="password_input" type="password" value="qwerty" /><br/> |
| <input name="search_input" type="search" value="search" /><br/> |
| <input name="tel_input" type="tel" value="911" /><br/> |
| <input name="text_input" type="text" value="text input" /><br/> |
| <input name="url_input" type="url" value="http://seleniumhq.org/" /><br/> |
| <br/> |
| <input name="checkbox_input" type="checkbox" value="Checkbox" checked /><br/> |
| <input name="radio_input" type="radio" value="radio1" checked /><br/> |
| <input name="radio_input" type="radio" value="radio2" /><br/> |
| <br/> |
| <input name="color_input" type="color" value="#00ffff" /><br/> |
| <br/> |
| <input name="date_input" type="date" value="2017-11-22" /><br/> |
| <input name="datetime_input" type="datetime" value="2017-11-22T11:22" /><br/> |
| <input name="datetime_local_input" type="datetime-local" value="2017-11-22T11:22" /><br/> |
| <input name="time_input" type="time" value="11:22" /><br/> |
| <input name="month_input" type="month" value="2017-11" /><br/> |
| <input name="week_input" type="week" value="2017-W47" /><br/> |
| <br/> |
| <input name="button_input" type="button" value="button" /> |
| <input name="image_input" type="image" value="image" src="icon.gif" /> |
| <input name="reset_input" type="reset" value="reset" /> |
| <input name="submit_input" type="submit" value="submit" /> |
| |
| <input name="hidden_input" type="hidden" value="hidden" /> |
| </form> |
| </body> |
| </html> |