A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!--
  2. # @name: index.html
  3. # @version: 0.1
  4. # @creation_date: 2021-09-24
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Home page for the application
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <link rel="stylesheet" type="text/css" href="css/style.css">
  13. </head>
  14. <body>
  15. <div class="centre">
  16. <form action="search.php" method="POST">
  17. <input type="text" name="search" placeholder="search for a patent record">
  18. <input type="submit" value="search">
  19. </form>
  20. </div>
  21. <div class="centre">
  22. <a href="./random.php">show a random record</a>
  23. </div>
  24. <div class="centre">
  25. <a href="./compare.php">compare two random records</a>
  26. </div>
  27. <div class="centre">
  28. <form action="search.php" method="POST">
  29. <input type="hidden" name="search" value="leak">
  30. <button type="submit" class="btn-link">
  31. example search: 'leak'
  32. </button>
  33. </form>
  34. </div>
  35. <div class="centre">
  36. <form action="search.php" method="POST">
  37. <input type="hidden" name="search" value="secret">
  38. <button type="submit" class="btn-link">
  39. example search: 'secret'
  40. </button>
  41. </form>
  42. </div>
  43. </body>
  44. </html>