Support
Partner Center
1<script src="https://cdn.jsdelivr.net/npm/@feathery/react@latest/umd/index.js" onload="initializeFeathery()"></script>
2<div id="fs-form-container">Loading </div>
3<script>
4function initializeFeathery() {
5const urlParams = new URLSearchParams(window.location.search);
6const theme = "Archbee Theme";
7const formId = urlParams.get('FormID')?urlParams.get('FormID'):"81SOyh";
8const userId = urlParams.get('SessionID')?urlParams.get('SessionID'):null;
9const params = userId?{theme: theme, userId:userId}:{theme: theme};
10 Feathery.init('2a6a681a-2f52-41c0-b5d0-9220f05782c5',params);
11 const loginEnabled = false;
12 Feathery.renderAt('fs-form-container', {
13 formId: formId
14 }, loginEnabled);
15}
16</script>
17