JSFiddle - React, Tailwind, and code Playground
by floor_
HTML
<html lang="en">
<head>
... all css files here
</head>
<body class="registrationFormBody">
<section class="sectionForms">
<div class="serviceProviderRegistrationFormDiv">
<form class="serviceProviderRegistrationForm">
.... labels and inputs
<button id="verifyProviderAddress" type="button" value="ProviderAddress">Verify</button>
</form>
</div>
</section>
</body>
<script type="module" src="public\js\Geocode.js"></script>
</html>
JavaScript
let buttonVerifyProviderAddress = document.getElementById("verifyProviderAddress");
buttonVerifyProviderAddress.addEventListener("click", () => onClickVerifyAddress());
function onClickVerifyAddress()
{
window.alert("I'm in");
console.log("Verifying");
}