Simple Login Form

Size
2,535 Kb
Views
12,144

How do I make an simple login form?

What is a simple login form? How do you make a simple login form? This script and codes were developed by Andréas Lundgren on 01 December 2022, Thursday.

Simple Login Form Previews

Simple Login Form - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Simple Login Form</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <form action="#"> <h1>Login</h1> <label for="email">Email</label> <input type="email" id="email" placeholder="Email" required> <label for="password">Password</label> <input type="password" id="password" placeholder="Password" required> <input type="submit" id="login" value="Login">
</form> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Simple Login Form - Script Codes CSS Codes

*, *::before, *::after { box-sizing: border-box;
}
html { font: normal 100%/1.5 "Open Sans", sans-serif;
}
body { background-color: #f9f9f9;
}
form { margin: 4em auto; padding: 2em 2em 1em; width: 32em; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
form h1 { margin: 0 0 2rem; color: #777; font-size: 2em; font-weight: 300;
}
form label { display: none;
}
form input { display: block; margin: 0 0 2rem 0; padding: 0 .5rem; width: 100%; border: none; border-bottom: .125rem solid #ccc; line-height: 2; outline: none;
}
form input:focus { border-color: tomato; color: tomato;
}
form input:-webkit-autofill { -webkit-box-shadow: 0 0 0 4em #ffb9ad inset; -webkit-text-fill-color: white; border-color: tomato;
}
form input[type="submit"] { border-color: #ff4d2e; background-color: tomato; color: white; font-size: 1.5em;
}
Simple Login Form - Script Codes
Simple Login Form - Script Codes
Home Page Home
Developer Andréas Lundgren
Username adevade
Uploaded December 01, 2022
Rating 3
Size 2,535 Kb
Views 12,144
Do you need developer help for Simple Login Form?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Andréas Lundgren (adevade) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!