Sunday, April 26, 2020

Login Form in HTML and CSS

This program is being written by my good friend and fellow software engineer Sir Ernel G. Fadriquilan thank you very much, Sir, for sharing your code to us.

I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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 City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/

Program Listing

<!Doctype html>
<html>
  <style>
  .n1{
   position: absolute;
 top: 50px;
 left: 100px;
 border: 1px red solid;
 padding: 25px;
 background: black;
 color: red;
 text-align: center;
 height: 500px;
 }
 .n2{
 text-align: center;
 padding:25px;
 border: 1px green solid;
 border-radius: 20px;
 background: cyan;
 margin-top: 25px;
 height: 400px;
  
 }
 .login{
 background: none;
 border-bottom: 1px green solid;
 margin: 10px;
 font-size: 20px;
 }
 .user input{
 background: none;
 border: none;
 border-bottom: 1px green solid;
 margin: 5px;
 }
 .pass input{
 background: none;
 border: none;
 border-bottom: 1px green solid;
 margin: 5px;
 }
 .sub input{
 background: black;
 color: white;
 width: 100%;
 margin-top:10px; 
 }
 .rp{
 font-size: 15px;
 }
 .ex input {
 margin-top: 25px;
 }
  </style>
  <body>
 <div class="n1">
   <div class="n2">
 <div class="login">
 Log in
   </div>
   <div class="user">
 <input type="text" placeholder="Enter username">
   </div>
 <div class="pass">
   <input type="password" placeholder="Enter password">
 </div>
 <div class="rp">
 <input type="checkbox"> Remember password
    </div>
   <div class="sub">
 <input type="submit" value="Sign in">
 <div class="ex">
   <input type="submit" value="Sign up">
   <input type="submit" value="Forgot password">
 </div>
   </div>
   </div>
 </div>
  </body>
 </html>

No comments:

Post a Comment