Tutorial Membuat From Login

watch_later Tuesday, 3 November 2015
Tutorial membuat from login 






Pertama buka dreamweaver anda


tulis sricpt ini :


 <!DOCTYPE html>
<html>
<title>Form Login</title>
<!-- Skrip CSS -->
<link rel="stylesheet" href="csslogin.css"/>
 </head> 
<body>
<div class="container">
<div class="main">
<form action="" method="post">
<h> FORM LOGIN DENGAN PHP</h2>
 <hr/>
<label>Username :</label>
<input id="name" name="username" placeholder="username" type="text">
<label>Password :</label>
<input id="password" name="password" placeholder="**********" type="password">
<input type="submit" name="submit" id="submit" value="Login">
</form>
</div> 
 </div>
 </body>
</html>




kedua untuk mempercantik tampilannya
kita membuat file css



.container {
width: 50%;
margin: 0 auto;

h2{
background-color: #53bd84; 
padding: 30px 35px; 
margin: -10px -50px;
text-align:center;
color: #fff;
}
span{ 
display: block; 
margin-bottom: 20px;
color: red;
}
.success{ 
display: block;
margin-top: 20px;
margin-bottom: 0;
font-size: 14px;

b{
color:green;
}
hr{
margin: 10px -50px;
border: 0;
border-top: 1px solid #ccc; 
margin-bottom: 25px;
}
div.main{
width: 306px; 
padding: 10px 50px 30px;
border: 2px solid gray;
font-family: raleway;
float:left; 
margin-top:15px;
}
input[type=text]{ 
width: 96%;
height: 25px;
padding: 5px; 
margin-bottom: 25px; 
margin-top: 5px;
border: 2px solid #ccc;
color: #53bd84;
font-size: 16px;
}
input[type=password]{
width: 96%;
height: 25px;
 padding: 5px; 
margin-bottom: 25px;
margin-top: 5px;
border: 2px solid #ccc;
color: #53bd84;
font-size: 16px;
}
label{
color: #53bd84;
text-shadow: 0 1px 0 #fff;
font-size: 14px;
font-weight: bold;
}
input[type=submit]{
font-size: 16px;
background: linear-gradient(#53bd84 5%, #fff 100%); 
color: #4E4D4B; 
font-weight: bold;
cursor: pointer;
width: 100%;
padding: 10px 0;
outline:none;
}



semoga bermanfaat ;)