mishrabp's picture
Upload folder using huggingface_hub
97dab2a verified
<div>
<!-- Hero Section -->
<section class="bg-white">
<div class="container mx-auto px-6 py-4 text-center">
<h1 class="text-5xl font-bold text-gray-800">User Login Status</h1>
<% if (userName) { %>
<p class="mt-4 text-gray-600 text-xl">Successfully logged in.</p>
<% } else { %>
<p class="mt-4 text-gray-600 text-xl">Failed to authenticate.</p>
<% } %>
</div>
</section>
<!-- Features Section -->
<section class="bg-gray-100">
<div class="container mx-auto px-6 py-4">
<div class="mb-12">
<h2 class="text-2xl font-bold text-gray-800">User Information: </h2>
<p class="mt-4 text-gray-600 text-xs"><pre><%= JSON.stringify(user, null, 2) %></pre></p>
</div>
</div>
</section>
</div>