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

(-)a/koha-tmpl/intranet-tmpl/prog/css/login.css (-23 / +16 lines)
Lines 92-105 label { Link Here
92
    overflow: hidden;
92
    overflow: hidden;
93
}
93
}
94
94
95
#login input {
96
	padding: 3px;
97
}
98
99
#login select {
100
    width: 98%;
101
}
102
103
#login ul {
95
#login ul {
104
	list-style: none;
96
	list-style: none;
105
	margin: 0;
97
	margin: 0;
Lines 112-126 label { Link Here
112
	text-align: center;
104
	text-align: center;
113
}
105
}
114
106
115
#login #userid, #password {
116
	font-size: 1.7em;
117
	width: 97%;
118
}
119
120
#login #branch, #login #desk_id {
121
	width : 99%;
122
}
123
124
#login #submit-button, #login .button {
107
#login #submit-button, #login .button {
125
	font-size: 1.4em;
108
	font-size: 1.4em;
126
	padding : .3em .6em;
109
	padding : .3em .6em;
Lines 173-182 label { Link Here
173
}
156
}
174
157
175
textarea, input, select {
158
textarea, input, select {
176
	background: #f4f4f4;
159
    background: #f4f4f4;
177
	border: 1px solid #b2b2b2;
160
    border: 1px solid #b2b2b2;
178
	color: #000;
161
    color: #000;
179
	font:  13px Verdana, Arial, Helvetica, sans-serif;
162
    font:  13px Verdana, Arial, Helvetica, sans-serif;
180
	margin: 1px;
163
    margin: 1px;
181
	padding: 3px;
164
    padding: 3px;
165
}
166
167
select {
168
    width: 97%;
169
}
170
171
input[type='text'],
172
input[type='password'] {
173
    font-size: 1.7em;
174
    width: 97%;
182
}
175
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-6 / +9 lines)
Lines 143-155 Link Here
143
            <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
143
            <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]" />
144
        [% END %]
144
        [% END %]
145
        [% IF invalid_otp_token %]
145
        [% IF invalid_otp_token %]
146
            <div class="dialog error">Invalid two-factor code</div>
146
            <div id="login_error">Invalid two-factor code</div>
147
        [% END %]
147
        [% END %]
148
148
149
        <p><label for="otp_token">Two-factor authentication code:</label>
149
        <p>
150
        <input type="text" name="otp_token" id="otp_token" class="input focus" value="" size="20" tabindex="1" />
150
            <label for="otp_token">Two-factor authentication code:</label>
151
        <p class="submit"><input id="submit-button" type="submit" value="Verify code" /></p>
151
            <input type="text" name="otp_token" id="otp_token" class="input focus" value="" size="20" tabindex="1" />
152
        <a class="logout" id="logout" href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log out</a>
152
        </p>
153
        <p>
154
            <input id="submit-button" type="submit" value="Verify code" />
155
            <a class="cancel" id="logout" href="/cgi-bin/koha/mainpage.pl?logout.x=1">Cancel</a>
156
        </p>
153
157
154
    </form>
158
    </form>
155
[% END %]
159
[% END %]
156
- 

Return to bug 28786