<%- include('../partials/head')  %>
<%- include('../partials/navbar') %>

<div class="container" style="max-width: 800px; margin: 20px auto; padding: 20px;">
    <h1 style="text-align: center; color: #333; margin-bottom: 20px;">All Sites</h1>
    
    <!-- Add New Site Button -->
    <a href="/formSites/new" style="
        display: inline-block; 
        margin-bottom: 20px; 
        padding: 10px 15px; 
        background-color: green; 
        color: white; 
        text-decoration: none; 
        border-radius: 5px;
    ">Add New Site</a>

    <!-- Sites Table -->
    <table style="width: 100%; border-collapse: collapse; text-align: left; font-size: 14px;">
        <thead>
            <tr style="background-color: #f4f4f4; border-bottom: 1px solid #ddd;">
                <th style="padding: 10px;">ID</th>
                <th style="padding: 10px;">Gate URL</th>
                <th style="padding: 10px;">Website URL</th>
                <th style="padding: 10px;">Actions</th>
            </tr>
        </thead>
        <tbody>
            <% sites.forEach(site => { %>
                <tr style="border-bottom: 1px solid #ddd;">
                    <td style="padding: 10px;"><%= site.id %></td>
                    <td style="padding: 10px;"><%= site.gate_url %></td>
                    <td style="padding: 10px;"><%= site.websiteUrl %></td>
                    <td style="padding: 10px;">
                        <a href="/formSites/forms/edit/<%= site.formId %>" style="
                            color: white; 
                            background-color: blue; 
                            padding: 5px 10px; 
                            border-radius: 5px; 
                            text-decoration: none;
                        ">Edit</a>
                    </td>
                       <td style="padding: 10px;">
                        <a href="<%= site.gate_url %>" style="
                            color: white; 
                            background-color: blue; 
                            padding: 5px 10px; 
                            border-radius: 5px; 
                            text-decoration: none;
                        ">Show</a>
                    </td>
                       <td style="padding: 10px;">
                        <a href="/formSites/delete/<%= site.id %>" style="
                            color: white; 
                            background-color: blue; 
                            padding: 5px 10px; 
                            border-radius: 5px; 
                            text-decoration: none;
                        ">Delete</a>
                    </td>
                </tr>
            <% }) %>
        </tbody>
    </table>
</div>

