Returns HTML for an input form element.
array $variables: An associative array containing:
function theme_input($variables) {
  $element = $variables['element'];
  $attributes = $variables['attributes'];
  return '<input' . $attributes . ' />' . drupal_render_children($element);
}