შესვლა
LOGIN FORM
2025-07-09

ეს არის HTML კოდი
Code
<form id="loginform">
  UserName: <input type="text" id="username">
  PassWord: <input type="password" id="pass">
  <input type="reset" value="Reset" id="reset"> <input type="submit" value="Login" id="login">
</form>


ეს არის Css კოდი
Code
body {
  font-family: arial 14px;
  color: #00d0ff;
  font-size: 13px;
  border: 1px;
}
#loginform {
  background: #0011ff;
  border: 1px;
  width: 570px;
  border-radius: 30px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
}
#username {
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  box-shadow:0px 1px 3px rgba(0,0,0,2) inset;
}
#pass {
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  box-shadow:0px 1px 3px rgba(0,0,0,2) inset;
}
#reset {
  cursor: pointer;
  border-radius: 5px 35px 35px 5px ;
  height: 25px;
  width: 66px;
  background: green;
  color: white;
  border-style: solid;
  box-shadow: 0px 1px 3px rgba (0,0,0,2) inset;
}
#login {
  cursor: pointer;
  border-radius: 5px 35px 35px 5px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0px 1px 3px rgba (0,0,0,2) inset;
  height: 25px;
  width: 66px;
  background: green;
  color: white;
}





749
ავტორი: WeBMasTeR5 კატეგორია: სკრიფტები
სულ კომენტარები: 5