





Surfers Against Sewage
SAS is a UK-based environmental charity that protects the oceans, beaches, and wildlife from pollution, particularly plastic waste and sewage. Founded in 1990 in Cornwall, England, the organization was initially a grassroots movement started by surfers directly affected by the water pollution they surfed. Amas was the first company to continue the SAS mission in the USA. We organize beach cleanup sessions in Hawaii with staff members and volunteers every week. Furthermore, we organize fundraising events and donate our profits to local NGOs fighting to improve ocean life.
[code_snippet id=30 name="Chatbot Surfy" format]
<div id="chatbox" style="width: 100%; max-width: 600px; margin: 0 auto; text-align: center;">
<input type="text" id="userInput" placeholder="Type your message..." style="width: 80%; padding: 10px; margin-bottom: 10px;">
<button onclick="sendMessage()" style="padding: 10px 20px; background-color: #007bff; color: white; border: none; cursor: pointer;">Send</button>
<div id="chatResponse" style="margin-top: 20px;"></div>
</div>
async function sendMessage() {
const userInput = document.getElementById('userInput').value;
const chatResponseDiv = document.getElementById('chatResponse');
if (!userInput) {
chatResponseDiv.innerHTML = "<p style='color:red;'>Please enter a message.</p>";
return;
}
chatResponseDiv.innerHTML = "<p>Sending...</p>";
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 = `<p><strong>Bot:</strong> ${data.message}</p>`;
} else {
chatResponseDiv.innerHTML = "<p style='color:red;'>Error communicating with chatbot.</p>";
}
} catch (error) {
console.error('Error:', error);
chatResponseDiv.innerHTML = "<p style='color:red;'>Unable to reach chatbot server.</p>";
}
}