Creates a hidden text control.
The control is not rendered, and it is invisible for the user. With this element you can send hidden data with a form to a server.
<form method="post" action="#URL#">
<input type="hidden" value="19:03:31" name="startTime" />
Username: <input type="text" name="userName" />
<br />
Email: <input type="text" name="email" />
<br />
Password: <input type="password" name="password" />
<br />
Repeat Password: <input type="password" name="repassword" />
<br /><br />
<input type="submit" value="Register" />
</form>