Simple Registration page using StealthSeminar API.
- Dynamic time format (with locale)
- URL tracking value (v1, v2 ...)
- Phone number with validation
Edit app.js file and add webinar short id.
// Webinar id
const webinarShortId = "";
// initial country
const initialCountry = "us"; // Phone number default country
Edit app.js file and add countries in the array shown below.
// ...
preferredCountries: [], // Preferred countries eg: us, ...
// ...
Edit form.html file to change input text all input text can be modified by the file except time options. Time formatting and locale options can be modified inside get request in app.js file. But that's not recommended, because you can change the format and language using event settings, so why do extra work?. But if you want to change this form only without affecting other forms then edit it.
Find this code and uncomment error marked line
axios
.get(//...)
//...
.catch((e) => {
// console.log(e); // Error
// ...
Find submit function and uncomment error marked line
function submit(e) {
//...
axios
.post(//..)
//...
.catch((e) => {
// console.log(e); // Error
// ...
https://help.stealthseminarapp.com/en/articles/362881-how-do-i-find-the-shortid-for-my-event