Guest User

Untitled

a guest
Feb 4th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Fake_Mail by On3</title>
  6. </head>
  7. <div style="background-color:black;">
  8. <body bgcolor="black">
  9. <center>
  10. <p align="center"><font color="white">Invia una fake mail compilando i diversi campi.</font><p>
  11. <!--Qui sotto, (method="POST")=Il metodo con cui invio i file, (action="send.php")=la pagina a cui invio i dati ricavati con POST-->
  12. <form id="form1" name="form1" method="post" action="send.php">
  13. <p><font color="white">Mittente</font>
  14. <label>
  15. <!--(name="from")=associo a questa casella di input il nome 'from'-->
  16. <input type="text" name="from" id="from" />
  17. </label>
  18.  
  19. </p>
  20. <p><font color="white">Destinatario</font>
  21. <label>
  22. <!--(name="to")=associa a quest'altra il nome 'to'-->
  23. <input type="text" name="to" id="to" />
  24. </label>
  25. </p>
  26. <p><font color="white">Oggetto</font>
  27. <label>
  28. <!--(name="subject")=a questa, invece, il nome 'subject'-->
  29. <input type="text" name="subject" id="subject" />
  30. </label>
  31.  
  32. </p>
  33. <p><font color="white">Testo</font></p>
  34. <p>
  35. <label>
  36. <!--(name="mess")=Associo a questa area di testo il nome 'mess'-->
  37. <textarea name="mess" id="mess" cols="45" rows="5"></textarea>
  38. </label>
  39. </p>
  40. <p>
  41.  
  42. <label>
  43. <!--Creo questo 'form' che invia i dati ad 'send.php'-->
  44. <input type="submit" name="submit" id="submit" value="Invia" />
  45. </label>
  46. </p>
  47. </form>
  48. </center>
  49.  
  50. </body>
  51. </div>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment