tgadmin/webadmin/templates/index.html

14 lines
497 B
HTML
Raw Permalink Normal View History

2024-07-25 12:19:15 +00:00
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<div class="index-container">
<h2>Welcome to Admin Panel</h2>
<p>Explore our features and enjoy a seamless experience with our platform.</p>
<p>Current time: <span id="current-time"></span>
<p>Check out our latest updates and news below!</p>
<!-- Add additional content or features here -->
</div>
<script src="/static/js/time.js" defer></script>
{% endblock %}