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
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

58 行
1.3KB

  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. <a href="./titles.php">ten random titles</a>
  29. </div>
  30. <div class="centre">
  31. <form action="search.php" method="POST">
  32. <input type="hidden" name="search" value="leak">
  33. <button type="submit" class="btn-link">
  34. example search: 'leak'
  35. </button>
  36. </form>
  37. </div>
  38. <div class="centre">
  39. <form action="search.php" method="POST">
  40. <input type="hidden" name="search" value="secret">
  41. <button type="submit" class="btn-link">
  42. example search: 'secret'
  43. </button>
  44. </form>
  45. </div>
  46. </body>
  47. </html>