Subversion Repositories ALCASAR

Compare Revisions

Regard whitespace Rev 2747 → Rev 2745

/blacklist/ultrasurf_nodes
File deleted
/web/css/style_intercept.css
111,6 → 111,8
 
/* placement et proportion de la boite de saisie et de l'aide */
/* pour desktop */
@media (min-width: 900px)
{
.mobile-only {
display: none;
}
139,49 → 141,7
width: 580px;
padding-top: 10px;
}
#username_input,
#password_input {
align: left;
}
/* hide placeholders for desktops */
::-webkit-input-placeholder {
/* WebKit browsers */
color: transparent;
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: transparent;
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: transparent;
}
:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: transparent;
}
input::placeholder {
color: transparent;
}
textarea::-webkit-input-placeholder {
/* WebKit browsers */
color: transparent;
}
textarea:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: transparent;
}
textarea::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: transparent;
}
textarea:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: transparent;
}
textarea::placeholder {
color: transparent;
}
/* pour mobile */
@media (max-width: 900px)
{
210,12 → 170,10
input[type="text"]
{
font-size:30px;
color: grey;
}
input[type="password"]
{
font-size:30px;
color: grey;
}
#boite-logon INPUT {
border: #666666 1px solid;
232,53 → 190,11
width: 580px;
padding-top: 10px;
}
#username_input,
#password_input {
align: center;
}
 
/* Placeholders */
::-webkit-input-placeholder {
/* WebKit browsers */
color: lightgrey;
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: lightgrey;
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: lightgrey;
}
:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: lightgrey;
}
input::placeholder {
color: lightgrey;
}
textarea::-webkit-input-placeholder {
/* WebKit browsers */
color: lightgrey;
}
textarea:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: lightgrey;
}
textarea::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: lightgrey;
}
textarea:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: lightgrey;
}
textarea::placeholder {
color: lightgrey;
}
}
/*boite de dialogue de deconnection*/
/* pour desktop */
@media (min-width: 900px)
{
.mobile-only {
display: none;
}
321,6 → 237,7
height: 150px;
z-index: 2;
}
}
/* pour mobile */
@media (max-width: 900px)
{
327,9 → 244,6
.desktop-only {
display: none;
}
.mobile-only {
display: inline;
}
#contenu_acces {
position: relative;
width: 90%;
/web/intercept.php
565,11 → 565,15
<tr>
<td class="desktop-only" width="20%" rowspan="4"> <img id="logo-organ" src="/images/organisme.png"></td>
<td class="desktop-only" width="30%" align="right"><?= $l_user ?></td>
<td id="username_input" width="100%" align="center"><input type="text" maxLength="32" name="username" autocomplete="off" placeholder="<?= $l_user ?>"></td>
<td class="desktop-only" width="50%" align="left"><input type="text" maxLength="32" name="username" autocomplete="off"></td>
<td class="mobile-only" width="100%" align="center"><input type="text" maxLength="32" name="username" autocomplete="off" placeholder="<?= $l_user ?>"></td>
</tr>
<tr>
<td class="desktop-only" align="right"><?= $l_password ?></td>
<td id="password_input" width="100%" align="center"><input maxLength="32" type="password" name="password" autocomplete="off" placeholder="<?= $l_password ?>"></td>
<td class="desktop-only" align="left"><input maxLength="32" type="password" name="password" autocomplete="off"></td>
 
<td class="mobile-only" width="100%" align="center"><input maxLength="32" type="password" name="password" autocomplete="off" placeholder="<?= $l_password ?>"></td>
</tr>
<tr>
<td height="23" id="authenticate-button" align="center"><input value="<?= $l_boutonO ?>" type="submit" name="button"></td>
<?php if ($service_SMS_status): ?>
/CHANGELOG
8,7 → 8,6
- Add LDAPS (LDAP SSL) support.
- Add a global group named "default" for all users (the "ldap" group still exists for users authenticated through LDAP/A.D.).
- Add LDAP filter.
- responsive captive page (thx to Aurélien DUBOIS)
 
ACC
- Add LDAP configuration assistant.