pfsense captive portal login form css mavi tema

<!DOCTYPE html>
<html >
  <head>
    <meta charset="UTF-8">
    <title>Login Form</title>
   
   
    <style>



* {
box-sizing: border-box;
}

*:focus {
outline: none;
}
body {
font-family: Arial;
background-color: #3498DB;
padding: 50px;
}
.login {
margin: 20px auto;
width: 300px;
}
.login-screen {
background-color: #FFF;
padding: 20px;
border-radius: 5px
}

.app-title {
text-align: center;
color: #777;
}

.login-form {
text-align: center;
}
.control-group {
margin-bottom: 10px;
}

input {
text-align: center;
background-color: #ECF0F1;
border: 2px solid transparent;
border-radius: 3px;
font-size: 16px;
font-weight: 200;
padding: 10px 0;
width: 250px;
transition: border .5s;
}

input:focus {
border: 2px solid #3498DB;
box-shadow: none;
}

.btn {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
  cursor:pointer;
}

.btn:hover {
  background-color: #2980B9;
}

.login-link {
  font-size: 12px;
  color: #444;
  display: block;
margin-top: 12px;
}





</style>
   
   
  </head>

  <body>

    <body>
<div class="login">
<div class="login-screen">
<div class="app-title">
<h1>Giriş Yapın</h1>
</div>

<div class="login-form">

<form method="post" action="$PORTAL_ACTION$">

<div class="control-group">
<input  name="auth_user" type="text" class="login-field" value="" placeholder="Kullanıcı Adı" id="login-name">
<label class="login-field-icon fui-user" for="login-name"></label>
</div>

<div class="control-group">
<input name="auth_pass" type="password" class="login-field" value="" placeholder="Şifre" id="login-pass">
<label class="login-field-icon fui-lock" for="login-pass"></label>
</div>
<input name="redirurl" type="hidden" value="$PORTAL_REDIRURL$">
<input name="zone" type="hidden" value="$PORTAL_ZONE$">
<input class="btn btn-primary btn-large btn-block" name="accept" type="submit" value="Giriş Yap">

<a class="login-link" ><b><p>Ücretsiz İnternet Kayıt için <p>Ordu Bilgi İşlem : 0 452 333 33 33</a>
</div>
</div>
</div>
</body>
   
   

   
  </body>
</html>

Hiç yorum yok:

Yorum Gönder