// Auto-fill subdomain based on company name
document.getElementById('company_name').addEventListener('input', function (e) {
const val = e.target.value.toLowerCase().replace(/[^a-z0-9]/g, '');
if (!document.getElementById('subdomain').value) {
// document.getElementById('subdomain').value = val;
}