- Express + EJS server-rendered app - Supabase PostgreSQL database - Auth: username/password with bcrypt - Dashboard with business stats - Load CRUD with filters - WhatsApp message parser - Payment tracking - Shipper & vehicle management - Reports (monthly, top shippers, routes) - Government-app aesthetic (tricolor theme) - Dark mode support - Docker + Coolify deployment ready - Seed data from existing business ledger (88 loads, 41 shippers, 70 vehicles)
17 lines
593 B
Text
17 lines
593 B
Text
</main>
|
|
</div>
|
|
|
|
<footer class="govt-footer">
|
|
<div class="footer-tricolor"><span></span><span></span><span></span></div>
|
|
<p>This is an official platform under the <strong>Ministry of Road Transport & Highways</strong>, Government of India initiative.</p>
|
|
<p class="footer-muted">© <%= year %> <%= appName %> (<%= appNameHi %>). All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="/js/app.js"></script>
|
|
<% if (typeof extraJs !== 'undefined') { %>
|
|
<% for (const js of extraJs) { %>
|
|
<script src="<%= js %>"></script>
|
|
<% } %>
|
|
<% } %>
|
|
</body>
|
|
</html>
|