You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.5 KiB
87 lines
3.5 KiB
|
1 year ago
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Pokémon Database Visualizer</title>
|
||
|
|
<link rel="stylesheet" href="styles.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app">
|
||
|
|
<div id="tabs">
|
||
|
|
<button class="tab-button active" data-tab="forms">Pokémon Forms</button>
|
||
|
|
<button class="tab-button" data-tab="evolutions">Evolution Chains</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="forms-tab" class="tab-content active">
|
||
|
|
<div class="forms-container">
|
||
|
|
<div id="pokemon-forms-list">
|
||
|
|
<input type="text" id="forms-filter" placeholder="Filter Pokémon...">
|
||
|
|
<ul id="forms-list-items"></ul>
|
||
|
|
</div>
|
||
|
|
<div id="pokemon-details">
|
||
|
|
<h2>Pokémon Details</h2>
|
||
|
|
<div id="details-content">
|
||
|
|
<div id="pokemon-basic-info">
|
||
|
|
<img id="pokemon-image" src="" alt="Pokémon Image">
|
||
|
|
<div id="pokemon-info">
|
||
|
|
<h3 id="pokemon-name"></h3>
|
||
|
|
<p id="pokemon-pfic"></p>
|
||
|
|
<p id="pokemon-national-dex"></p>
|
||
|
|
<p id="pokemon-generation"></p>
|
||
|
|
<div id="pokemon-storable">
|
||
|
|
<label for="storable-checkbox">Storable in Home:</label>
|
||
|
|
<input type="checkbox" id="storable-checkbox">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div id="pokemon-evolution-chain">
|
||
|
|
<h4>Evolution Chain</h4>
|
||
|
|
<div id="details-evolution-chain-content">
|
||
|
|
<table id="evolution-table">
|
||
|
|
<!-- The table will be populated dynamically -->
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<div id="evolutions-tab" class="tab-content">
|
||
|
|
<div class="evolution-container">
|
||
|
|
<div id="pokemon-list">
|
||
|
|
<input type="text" id="pokemon-filter" placeholder="Filter Pokémon...">
|
||
|
|
<ul id="pokemon-list-items"></ul>
|
||
|
|
</div>
|
||
|
|
<div id="evolution-chain-container">
|
||
|
|
<div id="evolution-chain"></div>
|
||
|
|
<div id="evolution-controls">
|
||
|
|
<button id="add-stage">Add Stage</button>
|
||
|
|
<button id="save-evolution-changes">Save Changes</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="renderer.js"></script>
|
||
|
|
|
||
|
|
<!-- Add this just before the closing </body> tag -->
|
||
|
|
<div id="edit-pokemon-modal" class="modal">
|
||
|
|
<div class="modal-content">
|
||
|
|
<span class="close">×</span>
|
||
|
|
<h2>Edit Pokémon</h2>
|
||
|
|
<form id="edit-pokemon-form">
|
||
|
|
<label for="pokemon-select">Select Pokémon:</label>
|
||
|
|
<select id="pokemon-select" required>
|
||
|
|
<!-- Options will be populated dynamically -->
|
||
|
|
</select>
|
||
|
|
<label for="evolution-method">Evolution Method:</label>
|
||
|
|
<input type="text" id="evolution-method" required>
|
||
|
|
<button type="submit">Save Changes</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|