testflask/site/templates/result.html
2024-12-30 15:45:41 +03:00

13 lines
373 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Baldur's Gate Character</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<h1>You are {{ character }}!</h1>
<a href="/">Try Again</a>
</body>
</html>