Advertisement
MateuszGrabarczyk

prezenty html

Jan 20th, 2023
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <html>
  2. <body>
  3. <center>
  4. <input type="text" id="giftName"/><br>
  5. <!-- <input type="text" id="date"/><br>-->
  6. <button onclick="addGift()">Dodaj</button><br>
  7. <button onclick="generate()">Generuj</button><br>
  8. </center>
  9. <script type="text/javascript">
  10. function addGift()
  11. {
  12. activity.addGift(document.getElementById("giftName").value);
  13. }
  14.  
  15. function generate()
  16. {
  17. activity.generate();
  18. }
  19. <!-- function whatdate()-->
  20. <!-- {-->
  21. <!-- document.getElementById("date").value=activity.getDate();-->
  22. <!-- }-->
  23. </script>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement