Drupal 6.x form elements to be converted to their HTML5 counterpart

Events happening in the community are now at Drupal community events on www.drupal.org.
You are viewing a wiki page. You are welcome to join the group and then edit it. Be bold!

<?php
/**
* Implementation of hook_form_FORM_ID_alter().
*/
function html5_tools_forms_form_user_edit_form_alter(&$form, &$form_state) {
  if(
$form['account']['mail']['#type'] == 'textfield') {
   
$form['account']['mail']['#type'] = 'email';
  }
}
?>

Oh Yeah the new form types :-D

New form elements types (email, numberfield, tel, range ,search ,url ) - http://drupal.org/node/816090
Missing Element types (date, color) - http://drupal.org/node/876780

Current element New Elements Assign to (feel free to add your name)
Email Text (user settings) email element frankcarey (done)
Email Text (Site Configuration) email element ericduran (done)
Search Text field (Search Module) search element ericduran (done)
Search Theme Form (Search Module) search element ericduran (done)
CCK Link field (Link Module) url element
CCK Integer field (CCK Module) input element type number LSU_JBob http://drupal.org/node/867306
CCK DateTime field (CCK Module) time element
CCK DateStamp field (CCK Module) time element
CCK DateTime field (CCK Module) time element