Probleme active directory
Résolu/Fermé
A voir également:
- Probleme active directory
- Directory list & print - Télécharger - Divers Utilitaires
- Directory opus - Télécharger - Gestion de fichiers
- Safesearch reste activé - Forum Réseaux sociaux
- Installation directory - Forum Logiciels
- Désactivation SafeSearch ✓ - Forum Windows
1 réponse
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { box-sizing: border-box; } body{ margin:0; height:100vh; width:100vw; overflow:hidden; font-family:'Lato' ,sans-serif; font-weight: 700; display: flex; align-items:center; justify-content:center; color:#555; background:#ecf0f3; } .login-div { width:430px; height:500px; padding:60px 35px 35px 35px; border-radius:40px; background:#ecf0f3; box-shadow:13px 13px 20px #cbced1, -13px -13px 20px #ffffff; } .fields { width:100%; padding:75px 5px 5px 5px; } .fields input { border:none; outline:none; background:none; font-size: 18px; color:#555; padding:20px 10px 20px 5px; } .user{ margin-bottom:30px; border-radius:25px; box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff; } .fields svg { height:22px; margin:0 10px -3px 25px; } button{ outline:none; border:none; cursor: pointer; width:100%; height: 60px; border-radius:30px; font-size: 20px; font-weight: 700; font-family:'Lato',sans-serif; color:#fff; text-align:center; background:#24cfaa; box-shadow:3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff; transition:0.5s; } button:hover { background:#2fdbb6; } button:active { background:#1da88a; } .label { text-align: center; font-size: 28px; padding-top: 24px; letter-spacing: 0.5px; } </style> </head> <body> <div class="login-div"> <form action="connect1.php" method="post"> <div class="fields" > <div class="user"><svg class="svg-icon" viewBox="0 0 20 20"> <path d="M17.388,4.751H2.613c-0.213,0-0.389,0.175-0.389,0.389v9.72c0,0.216,0.175,0.389,0.389,0.389h14.775c0.214,0,0.389-0.173,0.389-0.389v-9.72C17.776,4.926,17.602,4.751,17.388,4.751 M16.448,5.53L10,11.984L3.552,5.53H16.448zM3.002,6.081l3.921,3.925l-3.921,3.925V6.081z M3.56,14.471l3.914-3.916l2.253,2.253c0.153,0.153,0.395,0.153,0.548,0l2.253-2.253l3.913,3.916H3.56z M16.999,13.931l-3.921-3.925l3.921-3.925V13.931z"></path></svg> <input type="username" name="username" placeholder="username"/></div> </div> <button type="submit">submit</button> </form> </div> </body>