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 kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <!--
-
- # @name: index.html
- # @version: 0.1
- # @creation_date: 2021-09-24
- # @license: The MIT License <https://opensource.org/licenses/MIT>
- # @author: Simon Bowie <ad7588@coventry.ac.uk>
- # @purpose: Home page for the application
-
- -->
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <link rel="stylesheet" type="text/css" href="css/style.css">
- </head>
- <body>
-
- <div class="centre">
- <form action="search.php" method="POST">
- <input type="text" name="search" placeholder="search for a patent record">
- <input type="submit" value="search">
- </form>
- </div>
-
- <div class="centre">
- <a href="./random.php">show a random record</a>
- </div>
-
- <div class="centre">
- <a href="./compare.php">compare two random records</a>
- </div>
-
- <div class="centre">
- <a href="./titles.php">ten random titles</a>
- </div>
-
- <div class="centre">
- <form action="search.php" method="POST">
- <input type="hidden" name="search" value="leak">
- <button type="submit" class="btn-link">
- example search: 'leak'
- </button>
- </form>
- </div>
-
- <div class="centre">
- <form action="search.php" method="POST">
- <input type="hidden" name="search" value="secret">
- <button type="submit" class="btn-link">
- example search: 'secret'
- </button>
- </form>
- </div>
-
- </body>
- </html>
|