]> git.mjollnir.org Git - moodle.git/commitdiff
merged from 1.9 :: MDL-12881 :: added class names "username" and "password" for bette...
authorurs_hunkler <urs_hunkler>
Tue, 8 Jan 2008 18:07:47 +0000 (18:07 +0000)
committerurs_hunkler <urs_hunkler>
Tue, 8 Jan 2008 18:07:47 +0000 (18:07 +0000)
blocks/login/block_login.php

index e45f2f877aff6555014ad563e97b281553b7170d..51ffb337bb5c84e1f48c39309e9622adfe4c2efd 100644 (file)
@@ -45,10 +45,10 @@ class block_login extends block_base {
 
             $this->content->text .= "\n".'<form class="loginform" id="login" method="post" action="'.$wwwroot.'/login/index.php">';
 
-            $this->content->text .= '<div class="c1 fld"><label for="login_username">'.get_string('username').'</label>';
+            $this->content->text .= '<div class="c1 fld username"><label for="login_username">'.get_string('username').'</label>';
             $this->content->text .= '<input type="text" name="username" id="login_username" value="'.s($username).'" /></div>';
 
-            $this->content->text .= '<div class="c1 fld"><label for="login_password">'.get_string('password').'</label>';
+            $this->content->text .= '<div class="c1 fld password"><label for="login_password">'.get_string('password').'</label>';
             $this->content->text .= '<input type="password" name="password" id="login_password" value="" /></div>';
 
             $this->content->text .= '<div class="c1 btn"><input type="submit" value="'.get_string('login').'" /></div>';