gammatools/web/pages/bestiary.html

33 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="../assets/css/styles.css">
<link rel="stylesheet" type="text/css" href="../assets/css/creatures.css">
<title>Gamma World Bestiary</title>
<script src="../assets/js/config.js"></script>
<script type="module" src="../assets/js/bestiary.js" defer></script>
<script type="module" src="../assets/js/catalog.js" defer></script>
</head>
<body>
<h2>Look Up A Creature</h2>
<form id="searchForm">
<div class="form-row">
<div class="form-field">
<label for="creature">Beast</label>
<input type="string" name="creature" id="creature">
<button id="search-button" type="submit">Search</button>
</div>
<div class="form-field">
<label for="catalog-button">Retrieve Catalog</label>
<button id="catalog-button" type="button">Catalog</button>
</div>
</div>
</form>
<hr/>
<div id="resultSection"></div>
</body>
</html>