<%- include('partials/layout_start', { activePage: 'about-slider', pageTitle: 'Manage About Slider' }) %>

<div class="admin-section">
    <form action="/admin/about-slider/add" method="POST" enctype="multipart/form-data" style="margin-bottom: 30px; background: #1e293b; padding: 20px; border-radius: 8px; border: 1px solid #334155; max-width: 800px;">
        <h4 style="margin-top: 0; margin-bottom: 15px;">Add New Photo to About Slider</h4>
        <div class="form-group" style="margin-bottom: 15px;">
            <label style="display: block; margin-bottom: 5px; font-weight: bold;">Photo</label>
            <input type="file" name="image" accept="image/*" required>
        </div>
        <button type="submit" class="btn-primary" style="padding: 10px 20px; background-color: #f59e0b; color: #1e293b; border: none; font-weight: bold; cursor: pointer; border-radius: 4px;">Upload Photo</button>
    </form>
    
    <div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;">
        <% images.forEach(img => { %>
            <div style="background: #1e293b; border: 1px solid #334155; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column;">
                <div style="background-color: #0f172a; text-align: center; height: 150px;">
                    <img src="<%= img.image_url %>" style="width: 100%; height: 100%; object-fit: cover;">
                </div>
                <div style="padding: 10px; display: flex; justify-content: space-between; align-items: center; background: #1e293b;">
                    <div style="color: #64748b; font-size: 0.8rem;"><%= img.created_at.split(' ')[0] %></div>
                    <form action="/admin/about-slider/delete/<%= img.id %>" method="POST" style="margin: 0;">
                        <button type="submit" style="color:white; background: #ef4444; border:none; padding: 5px 10px; border-radius: 4px; cursor:pointer; font-size: 0.8rem;"><i class="fas fa-trash-alt"></i> Delete</button>
                    </form>
                </div>
            </div>
        <% }) %>
    </div>
</div>

<%- include('partials/layout_end') %>
