mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-20 02:56:10 +00:00
26 lines
675 B
HTML
26 lines
675 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='../static/css/style.css') }}">
|
|
<title>Session</title>
|
|
</head>
|
|
<body>
|
|
<center>
|
|
{% block content %}
|
|
<h1>{% block title %} Session Information {% endblock %}</h1>
|
|
<label>User Anzahl, Uptime, Creator:</label>
|
|
<p>{{das}}</p>
|
|
<p>{{der}}</p>
|
|
|
|
<p>{{er}}</p>
|
|
<h1>QR-Code</h1>
|
|
{% endblock %}
|
|
|
|
<img src="../static/img/qr.png"
|
|
|
|
</center>
|
|
</body>
|
|
</html> |