EduCat with Flowise integration - complete implementation

This commit is contained in:
inubimambo
2025-07-05 23:37:31 +08:00
commit f5f5189fa0
21 changed files with 8184 additions and 0 deletions

20
views/error.ejs Normal file
View File

@@ -0,0 +1,20 @@
<%- include('partials/header') %>
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card shadow-lg border-0">
<div class="card-body text-center py-5">
<i class="fas fa-exclamation-triangle fa-4x text-warning mb-4"></i>
<h2 class="mb-3">Oops! Something went wrong</h2>
<p class="text-muted mb-4"><%= error %></p>
<a href="/" class="btn btn-primary">
<i class="fas fa-home me-2"></i>Go Home
</a>
</div>
</div>
</div>
</div>
</div>
<%- include('partials/footer') %>