16 lines
461 B
HTML
16 lines
461 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<head>
|
|
<title>Forget</title>
|
|
<link rel='stylesheet' href='{{ url_for("static", filename="style.css") }}' />
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link rel='icon' href='{{ url_for("static", filename="icon.png") }}' />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Forget</h1>
|
|
</header>
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|