Add files via upload

This commit is contained in:
Knugi
2021-01-10 13:56:45 +00:00
committed by GitHub
parent 661d12cac4
commit 92ccd641c4
2 changed files with 64 additions and 0 deletions

25
whatsapp.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Whatsapp - {{ name }}</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<h1 class="w3-center w3-top" style="position:sticky">Chat history with {{ name }}</h1>
<div class="w3-container w3-sand w3-center" style="width:60%;margin:auto;z-index: 999999;">
<table class="w3-center" style="width:100%;margin-right:;">
<div style="width:100%">
{% for msg in msgs -%}
<tr>
{% if msg.from_me == true %}
<td style="text-align: right;height:auto;">{{ msg.data }}</td>
{% else %}
<td style="text-align: left;height:auto;">{{ msg.data }}</td>
{% endif %}
</tr>
{% endfor %}
</div>
</table>
</div>
</body>
</html>