pE - hiding all inputs
deactivates fields, so that no info is sent to timum Of course, If customer is unknown this breaks our booking. We need(!) email, lastName and firstName to create a booking.
by timum
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>timum single instance example</title>
</head>
<body>
<div id="bookingjs" style="margin: 32px"></div>
<script type="module">
import * as timum from 'https://cdn.timum.de/bookingjs/1/booking.js'
timum.init(
{
host: "https://staging.timum.de", //remove this line for production
ref: "LEGT-O-68144-M@polyestate",
calendarFrontend: "condensedView",
pData: {
platform: "polyestate",
partnerId: "2416CFC5-5E0E-4798-965E-CF74A363D610-51609-M"
},
fields: {
message: undefined,
mobile: undefined,
email: undefined,
lastName: undefined,
firstName: undefined
},
culture: "de"
}
)
</script>
</body>
</html>