added hello message

This commit is contained in:
Alexander Popov 2023-08-06 00:58:11 +03:00
parent 7d4bb47a53
commit 397090f177
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6

View File

@ -34,6 +34,15 @@
<include src="app/partitial/footer.html"></include>
</div>
<script id="autorun" type="module"></script>
<script id="autorun" type="module">
function autorun() {
log_style =
'; font-size: 14px; font-weight: bold; font-style: monospace;' +
'background: #000; color: #fff;' +
'padding: 8px; border-radius: 5px;';
console.log('%c☕ Hello ${username}!', log_style);
}
autorun();
</script>
</body>
</html>