Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
how to create a customer login
i wanna create a customer login. i have a html code:
<form name='frmlogin' id='frmlogin' class='box login' method='post' action='https://checkout.netsuite.com/app/site/backend/customerlogin.nl' onsubmit="if (typeof(this.submitted)!='undefined') return false; if (checkemail(email,false,true) && checknotempty(document.forms['frmlogin'].password,'Password')) {this.submitted=1;return true;} else return false;"> <label style='text-align:center'>Log in</label> <fieldset class='boxBody'> <label>Email address</label> <input type='text' name='email' tabindex='1' placeholder='Email address' required onchange='rememberme.checked=false;'> <label>Password</label> <input name='password' type='password' maxlength=16 tabindex='2' required> <a href='
0