View | Details | Raw Unified | Return to bug 11146
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/login.css (-1 / +10 lines)
Lines 115-125 label { Link Here
115
	width : 99%;
115
	width : 99%;
116
}
116
}
117
117
118
#login #submit {
118
#login #submit, #login .button {
119
	font-size: 1.4em;
119
	font-size: 1.4em;
120
	padding : .3em .6em;
120
	padding : .3em .6em;
121
}
121
}
122
122
123
#login #onerror_actions {
124
    margin-bottom: 1em;
125
    text-align: center;
126
}
127
128
#login #onerror_actions .button {
129
    margin: 3px;
130
    color: #333333;
131
}
123
132
124
#footer {
133
#footer {
125
        text-align: center;
134
        text-align: center;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +8 lines)
Lines 16-22 Link Here
16
<div id="login">
16
<div id="login">
17
<h1><a href="http://koha-community.org">Koha</a></h1>
17
<h1><a href="http://koha-community.org">Koha</a></h1>
18
[% IF ( nopermission ) %]
18
[% IF ( nopermission ) %]
19
<div id="login_error"><strong>Error:</strong> You do not have permission to access this page. <a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Click to log out</a></div>
19
<div id="login_error">
20
    <strong>Error:</strong>
21
    You do not have permission to access this page.
22
</div>
23
<div id="onerror_actions">
24
    <a href="javascript:window.history.back()" class="button">Previous page</a>
25
    <a href="/cgi-bin/koha/mainpage.pl?logout.x=1" class="button">Log out</a>
26
</div>
20
[% END %]
27
[% END %]
21
28
22
[% IF ( timed_out ) %]
29
[% IF ( timed_out ) %]
23
- 

Return to bug 11146