Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>This Pokémon Does Not Exist</title> | |
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" /> | |
<link rel="stylesheet" id="stylesheet-tag" /> | |
<script type="module" id="script-tag"></script> | |
<script> | |
const basePath = document.location.origin + document.location.pathname; | |
document.getElementById('script-tag').src = `${basePath}static/index.js`; | |
document.getElementById('stylesheet-tag').href = `${basePath}static/style.css`; | |
</script> | |
</head> | |
<body> | |
<h1>This Pokémon Does Not Exist</h1> | |
<div class="duration"><span class="seconds">0.0</span>/500s</div> | |
<button class="generate">Generate Pokémon Card with AI</button> | |
<section class="render"></section> | |
</body> | |
</html> | |