Advertisement
irfanamir

index2.php

Nov 12th, 2020
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Contact Form Email</title>
  5. </head>
  6. <body>
  7.  
  8.     <h1>Contact Form Email</h1>
  9.    
  10.     <form action="kirim.php" method="post">
  11.         <p><input type="text" name="nama" placeholder="Nama anda" size="30" required /></p>
  12.         <p><input type="text" name="namail" placeholder="Email valid" size="30" required /></p>
  13.         <p><input type="text" name="judul" placeholder="Subjek pesan email" size="50" required /></p>
  14.         <p><textarea name="pesan" placeholder="Pesan anda" rows="7" cols="50" required></textarea>
  15.         <p><input type="submit" name="kirim" value="Kirim Pesan" /> <input type="reset" value="Hapus Text" /></p>
  16.     </form>
  17.    
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement