mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merge branch 'MDL-39813_login' of git://github.com/andyjdavis/moodle
This commit is contained in:
commit
24e13d4283
4 changed files with 16 additions and 18 deletions
|
@ -961,7 +961,6 @@ $string['loginstepsnone'] = '<p>Hi!</p>
|
||||||
<p>All you need to do is make up a username and password and use it in the form on this page!</p>
|
<p>All you need to do is make up a username and password and use it in the form on this page!</p>
|
||||||
<p>If someone else has already chosen your username then you\'ll have to try again using a different username.</p>';
|
<p>If someone else has already chosen your username then you\'ll have to try again using a different username.</p>';
|
||||||
$string['loginto'] = 'Log in to {$a}';
|
$string['loginto'] = 'Log in to {$a}';
|
||||||
$string['loginusing'] = 'Login here using your username and password';
|
|
||||||
$string['logout'] = 'Log out';
|
$string['logout'] = 'Log out';
|
||||||
$string['logoutconfirm'] = 'Do you really want to log out?';
|
$string['logoutconfirm'] = 'Do you really want to log out?';
|
||||||
$string['logs'] = 'Logs';
|
$string['logs'] = 'Logs';
|
||||||
|
|
|
@ -18,16 +18,8 @@ if (!empty($CFG->loginpasswordautocomplete)) {
|
||||||
<div class="skiplinks"><a class="skip" href="signup.php"><?php print_string("tocreatenewaccount"); ?></a></div>
|
<div class="skiplinks"><a class="skip" href="signup.php"><?php print_string("tocreatenewaccount"); ?></a></div>
|
||||||
<?php
|
<?php
|
||||||
} ?>
|
} ?>
|
||||||
<h2><?php print_string("returningtosite") ?></h2>
|
<h2><?php print_string("login") ?></h2>
|
||||||
<div class="subcontent loginsub">
|
<div class="subcontent loginsub">
|
||||||
<div class="desc">
|
|
||||||
<?php
|
|
||||||
print_string("loginusing");
|
|
||||||
echo '<br/>';
|
|
||||||
echo '('.get_string("cookiesenabled").')';
|
|
||||||
echo $OUTPUT->help_icon('cookiesenabled');
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
<?php
|
<?php
|
||||||
if (!empty($errormsg)) {
|
if (!empty($errormsg)) {
|
||||||
echo html_writer::start_tag('div', array('class' => 'loginerrors'));
|
echo html_writer::start_tag('div', array('class' => 'loginerrors'));
|
||||||
|
@ -59,6 +51,12 @@ if (!empty($CFG->loginpasswordautocomplete)) {
|
||||||
<div class="clearer"><!-- --></div>
|
<div class="clearer"><!-- --></div>
|
||||||
<div class="forgetpass"><a href="forgot_password.php"><?php print_string("forgotten") ?></a></div>
|
<div class="forgetpass"><a href="forgot_password.php"><?php print_string("forgotten") ?></a></div>
|
||||||
</form>
|
</form>
|
||||||
|
<div class="desc">
|
||||||
|
<?php
|
||||||
|
echo get_string("cookiesenabled");
|
||||||
|
echo $OUTPUT->help_icon('cookiesenabled');
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if ($CFG->guestloginbutton and !isguestuser()) { ?>
|
<?php if ($CFG->guestloginbutton and !isguestuser()) { ?>
|
||||||
|
|
|
@ -360,7 +360,7 @@ input#id_externalurl {direction:ltr;}
|
||||||
.loginbox.twocolumns {margin:15px;}
|
.loginbox.twocolumns {margin:15px;}
|
||||||
.loginbox h2,
|
.loginbox h2,
|
||||||
.loginbox .subcontent {margin:5px;padding:10px;text-align:center;}
|
.loginbox .subcontent {margin:5px;padding:10px;text-align:center;}
|
||||||
.loginbox .loginpanel .desc {margin:0;padding:0;margin-bottom:5px;}
|
.loginbox .loginpanel .desc {margin:0;padding:0;margin-bottom:5px;margin-top:15px;}
|
||||||
.loginbox .signuppanel .subcontent {text-align:left;}
|
.loginbox .signuppanel .subcontent {text-align:left;}
|
||||||
.dir-rtl .loginbox .signuppanel .subcontent {text-align: right;}
|
.dir-rtl .loginbox .signuppanel .subcontent {text-align: right;}
|
||||||
.loginbox .loginsub {margin-left:0;margin-right:0;}
|
.loginbox .loginsub {margin-left:0;margin-right:0;}
|
||||||
|
|
|
@ -422,6 +422,7 @@ a.skip:active {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
margin-top:15px;
|
||||||
}
|
}
|
||||||
.loginbox .signuppanel .subcontent {
|
.loginbox .signuppanel .subcontent {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue