New version of front page and login page

This commit is contained in:
Manuel Cillero 2017-09-24 21:54:45 +02:00
parent 66b921be18
commit f339ddbec3
33 changed files with 123 additions and 72 deletions

View file

@ -41,9 +41,11 @@ function stormtask_tasks($project) {
),
array(
'data' => t('Parent'),
'class' => 'coldrag',
),
array(
'data' => t('Weight'),
'class' => 'coldrag',
),
array(
'data' => storm_icon_add_node($i, $params),

View file

@ -1327,6 +1327,8 @@ function user_login(&$form_state) {
$form['#validate'] = user_login_default_validators();
$form['submit'] = array('#type' => 'submit', '#value' => t('Log in'), '#weight' => 2);
drupal_add_js('$jq(function(){$("#edit-name").focus();});', 'inline', 'footer');
return $form;
}