Friday, October 11, 2019

Transparent Login Form in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Background Picture


Program Listing

index.html

<html>
<head>
<meta charset="utf-8">
<title>LOGIN FORM DESIGN</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box">
<h2>Login Form</h2>
<form>
<div class="inputBox">
<input type="text" name="" required="">
<label>Username</label>
</div>
<div class="inputBox">
<input type="password" name="" required="">
<label>Password</label>
</div>
<input type="submit" name="" value="Submit">
</form>
</div>
</body>
</html>


style.css

body
{
margin:0;
padding:0;
font-family:sans-serif;
background:url(nature.jpg);
background-size:cover;
}

.box
{
position:absolute;
top:50%;
Left:50%;
transform:translate(-50%,-50%);
width:500px;
padding:40px;
background:rgba(0,0,0,.6);
box-sizing:border-box;
box-shadow:0 15px 25px rgba(0,0,0,.5);
border-radius:10px;
}
.box h2
{
margin:0 0 30px;
padding:0;
color:White;
text-align:center
}
.box .inputBox
{
position:relative;
}
.box .inputBox input
{
width:100%;
padding:8px 0;
font-size:16px;
color:#fff;
Letter-spacing:1px;
margin-bottom:10px;
border:none;
border-bottom:1px solid #fff;
outline:none;
background:transparent;
{
.box .inputBox label
{
position:absolute;
top:0;
Left:0;
Letter-spacing:1px;
padding:10px 0;
font-size:14px;
color:#fff;
pointer-events:none;
transition:.5s;
}
.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label
{
Top:-18px;
Left:0;
color:#03a9f4;
font-size:14px;
}
.box input[type="submit"]
{
background:transparent;
border:none;
outline:none;
color:#fff;
background:#03a9f4;
padding:10px 20px;
cursor:pointer;
border-radius:5px;
}

No comments:

Post a Comment