Josif_tepe

Untitled

Nov 3rd, 2025
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8" />
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.   <title>List of Authors</title>
  7.   <link rel="stylesheet" href="styles.css" />
  8. </head>
  9. <body>
  10.   <h1>Information About Authors</h1>
  11.  
  12.   <!-- Filters -->
  13.   <div class="filters">
  14.     <div>
  15.       <label for="filterName">Name:</label>
  16.       <input type="text" id="filterName" placeholder="Enter author name" />
  17.     </div>
  18.     <div>
  19.       <label for="filterNationality">Nationality:</label>
  20.       <select id="filterNationality">
  21.         <option value="">All</option>
  22.       </select>
  23.     </div>
  24.     <div>
  25.       <label for="filterAlive">Alive:</label>
  26.       <input type="checkbox" id="filterAlive" />
  27.     </div>
  28.     <div>
  29.       <label for="filterActiveYear">Years Active:</label>
  30.       <input type="number" id="filterActiveYear" placeholder="Enter year" />
  31.     </div>
  32.     <div class="clearFilters">
  33.       <button id="clearFilters" class="btn">Clear Filters</button>
  34.     </div>
  35.   </div>
  36.  
  37.   <!-- Authors Table -->
  38.   <table id="authorsTable" class="table">
  39.     <thead>
  40.       <tr>
  41.         <th data-sort="id">ID</th>
  42.         <th data-sort="name">Name</th>
  43.         <th data-sort="birth_date">Birth Date</th>
  44.         <th data-sort="alive">Alive</th>
  45.         <th data-sort="age">Age</th>
  46.         <th data-sort="nationality">Nationality</th>
  47.         <th data-sort="bibliographyCount"># Books</th>
  48.         <th data-sort="bibliographySummary">Bibliography</th>
  49.         <th data-sort="yearsActive">Years Active</th>
  50.       </tr>
  51.     </thead>
  52.     <tbody></tbody>
  53.   </table>
  54.  
  55.   <!-- Books Modal -->
  56.   <div class="modal" id="booksModal" hidden="true">
  57.     <div class="modal-content">
  58.       <span class="close-btn" id="closeModal">&times;</span>
  59.       <h2 id="booksModalTitle">Bibliography</h2>
  60.       <table id="booksTable">
  61.         <thead>
  62.           <tr><th>Name</th><th>Year</th><th>Type</th></tr>
  63.         </thead>
  64.         <tbody></tbody>
  65.       </table>
  66.     </div>
  67.   </div>
  68.  
  69.   <!-- JS -->
  70.   <script src="script.js"></script>
  71. </body>
  72. </html>
  73.  
Advertisement
Add Comment
Please, Sign In to add comment