Guest User

Untitled

a guest
Dec 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Title</title>
  8. </head>
  9. <body>
  10. <form>
  11. <input type="email" name="email" placeholder="email">
  12. <button type="button" id="send">enviar</button>
  13. </form>
  14.  
  15. <script
  16. src="https://code.jquery.com/jquery-3.3.1.min.js"
  17. integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
  18. crossorigin="anonymous"></script>
  19.  
  20. <script type="text/javascript">
  21. $('#send').on('click', function(){
  22. $.ajax({
  23. url: "URL QUE RETORNA O TOKEN",
  24. method: "post",
  25. contentType: "application/json",
  26. data: '{ "email": "your@email.com" }',
  27. success: function (data) {
  28. console.log(data);
  29. }
  30. });
  31. });
  32. </script>
  33. </body>
  34. </html>
Add Comment
Please, Sign In to add comment