eduloom-supportsync / support.html
alfboss's picture
Make a support ticket create temlate and tell customer that yoiur ticket is been created and our support agent will reply you within 24 hrs you can even reply to thjise email for futher commnuination
6759add verified
raw
history blame contribute delete
962 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support | EduLoom</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/sidebar.js"></script>
<script src="components/header.js"></script>
<script src="components/support-ticket.js"></script>
</head>
<body class="h-full bg-gray-50">
<div class="flex h-full">
<custom-sidebar></custom-sidebar>
<div class="flex-1 flex flex-col overflow-hidden">
<custom-header></custom-header>
<main class="flex-1 overflow-y-auto p-6">
<support-ticket></support-ticket>
</main>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html>