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
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lines
586B

  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. </head>
  13. <body>
  14. <form action="search.php" method="POST">
  15. <input type="text" name="search" placeholder="search for a patent record">
  16. <input type="submit" value="search">
  17. </form>
  18. <a href="./random.php">show a random record</a>
  19. <a href="./compare.php">compare two random records</a>
  20. </body>
  21. </html>