am_dot_com

SW 2022-04-22

Apr 22nd, 2022 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>My Notes</title>
  6. <script src="amutil.js"></script>
  7. <!--
  8. <script src="MyNote.js"></script>
  9. -->
  10. <script src="my_notes.js"></script>
  11. </head>
  12. <body>
  13. <form id="idFormNote"
  14. method="post"
  15. enctype="application/x-www-form-urlencoded"
  16. action="/recordNote"
  17. >
  18. <fieldset>
  19. <legend>Your note</legend>
  20. <label for="idTitle">Note title:</label><br>
  21. <input type="text" name="nameTitle" id="idTitle"
  22. placeholder="title">
  23. <br>
  24. <label for="idDescription">Note description:</label>
  25. <br>
  26. <textarea cols="40" rows="3"
  27. placeholder="description"
  28. name="nameDescription" id="idDescription"
  29. ></textarea>
  30. </fieldset>
  31. <br>
  32. <input type="submit" value="take note">
  33. </form>
  34. </body>
  35. </html>
Add Comment
Please, Sign In to add comment