Created
July 26, 2019 23:48
-
-
Save tisufa/3fa76ce8c1544bf90e0c185b0cd0d865 to your computer and use it in GitHub Desktop.
Login Form HTML & CSS Desain Ketiga: https://www.duniacara.com/cara-membuat-login-form-dengan-html-dan-css-desain-3/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>CSS Desain Form Login 3</title> | |
<link rel="stylesheet" href="style.css"> | |
<!-- font awesome 4 Plugin --> | |
<link rel="stylesheet" href="plugin/fa/css/font-awesome.css"> | |
</head> | |
<body> | |
<h1 class="tengah">Clean Flat Login Form</h1> | |
<div class="konten"> | |
<div class="atas"> | |
<div class="grup"> | |
<a href="#" class="a tombol facebook"><i class="fa fa-facebook"></i>Join with Facebook</a> | |
<a href="#" class="a tombol twitter"><i class="fa fa-twitter"></i>Join with Twitter</a> | |
</div> | |
<form action="#" method="post"> | |
<div class="grup"> | |
<input type="text" placeholder="Masukkan Username Anda"> | |
</div> | |
<div class="grup"> | |
<input type="password" placeholder="Masukkan Password Anda"> | |
</div> | |
<div class="jarakatas30"> | |
<div class="grup tengah"> | |
<button type="submit" class="tombol kirim">Submit</button> | |
<button type="button" class="tombol hapus">Clear</button> | |
</div> | |
</div> | |
<div class="grup"> | |
<div class="kiri"> | |
<input type="checkbox"> | |
<span>Keep me signed in</span> | |
</div> | |
<div class="kanan"> | |
<a href="#" class="a garisbawah">Forgot Your Password?</a> | |
</div> | |
</div> | |
</form> | |
</div> | |
<div class="bawah tengah"> | |
<span class="info">Incorrect login or Password</span> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment