×

Submit your song for The OakA Charts, then tell your fans to vote for you-- it's that easy.

OakA Song Submission
×
async function submitForm() { const artist_song = document.getElementById("artist_song").value.trim(); const collaborators = document.getElementById("collaborators").value.trim(); const link = document.getElementById("link").value.trim(); const email = document.getElementById("email").value.trim(); const errorDiv = document.getElementById("error-message"); // Clear previous error errorDiv.textContent = ""; if (!artist_song || !link || !email) { errorDiv.textContent = "Please fill in all required fields."; return; } try { const response = await fetch("https://oakacharts-stripe-server.onrender.com/create-checkout-session", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ artist_song, collaborators, link, email }) }); const { sessionId } = await response.json(); const stripe = Stripe("pk_live_51RCkdAFwFRnmvVnNssSuvFRIhRdXTg9SfMnSda9OSLSmQR5vvB9cqGXYwe788jc1rcmp4JLuF8y6FTD44NC5erpr00sXF1GwQi"); stripe.redirectToCheckout({ sessionId }); } catch (err) { errorDiv.textContent = "Something went wrong. Please try again later."; } }

Thank you for submitting! Have fans vote for you here.Or submit another song here.