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 lang="en">
<head>
    <title>Document</title>
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <style>
   body{
   padding: 30px; 
    } 
    form{
    margin-top: 120px; 
    padding-top: 20px;
    overflow: auto;
    border: 1px solid black; 
    height: 400px;
    width: 250px;
    } 
  label{
font-size: 13px;
font-weight: bolder;
text-align: center;
   }
    input{
  width:270px;
  height: 54px;
   margin-bottom: 10px; 
  text-align: center;
  border-top: 1px solid  white;
  border-right: 1px solid white;
  border-bottom: 1px solid tomato;
  border-left: 1px solid white;
    } 
  button{
  width: 270px; 
  height: 30px; 
   } 
   p{
   margin-top: 23px; 
   } 
   </style>
</head>
<body>
<h1>This how to use <ins>overFlow:</ins> auto.</h1>
  <form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
  <label>Email:</label>
  <input type="email" name="email" placeholder="Email Need"/>
  <label>Password:</label>
 <input type="password" name="password" placeholder="Password Need"/>
  <button type="button">Submit</button>
  <p>This Form is Used php With Form itself.</p>
  </form>
</body>
</html>