Showing all 5 results

  • SALE AMAS Floral Crewneck

    AMAS Floral Crewneck

    Original price was: $65.99.Current price is: $59.99.
    Select options This product has multiple variants. The options may be chosen on the product page
  • SALE AMAS Wave Graphic Sweatshirt

    AMAS Wave Graphic Sweatshirt

    Original price was: $67.99.Current price is: $54.99.
    Select options This product has multiple variants. The options may be chosen on the product page
  • SALE Regal One Piece Swimsuit

    Regal One Piece Swimsuit

    Original price was: $69.00.Current price is: $59.00.
    Select options This product has multiple variants. The options may be chosen on the product page
  • SALE Surflove Hoodie

    Surflove Hoodie

    Original price was: $56.99.Current price is: $49.99.
    Select options This product has multiple variants. The options may be chosen on the product page
  • SALE Waverider Short Sleeve Wetsuit

    Waverider Short Sleeve Wetsuit

    Original price was: $99.99.Current price is: $89.99.
    Select options This product has multiple variants. The options may be chosen on the product page
async function sendMessage() { const userInput = document.getElementById('userInput').value; const chatResponseDiv = document.getElementById('chatResponse'); if (!userInput) { chatResponseDiv.innerHTML = "

Please enter a message.

"; return; } chatResponseDiv.innerHTML = "

Sending...

"; try { const response = await fetch('http://44.222.167.138:5000/chat', { // Replace with your ECS public IP method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ message: userInput }) }); if (response.ok) { const data = await response.json(); chatResponseDiv.innerHTML = `

Bot: ${data.message}

`; } else { chatResponseDiv.innerHTML = "

Error communicating with chatbot.

"; } } catch (error) { console.error('Error:', error); chatResponseDiv.innerHTML = "

Unable to reach chatbot server.

"; } }