For {T381886} we want to use QuickSurvey to display the feedback form for users.
[[ https://www.mediawiki.org/wiki/Extension:QuickSurveys#How_to_load_a_specific_survey | The documentation ]] says,
> Note that a survey won't show up when:
>
> * on the Main Page;
> * on non-article page;
> * on non-existent article page. Be careful when using the MobileFrontend content provider!;
> * on skin Minerva when the beta opt in panel is shown;
At the same time, [[ https://www.mediawiki.org/wiki/Extension:QuickSurveys#How_to_load_a_specific_survey | the documentation ]] also states:
```
mw.loader.using( 'ext.quicksurveys.init' )
.then( () => {
mw.extQuickSurveys.showSurvey( 'survey name' );
} );
```
> Note well that this will work on any page.
I was able to load a quick survey form (P73967) that I created using the above approach (along with `embedElementId`) but this is not not stable per https://www.mediawiki.org/wiki/Stable_interface_policy/Frontend and this comment:.https://github.com/wikimedia/mediawiki-extensions-QuickSurveys/blob/master/resources/ext.quicksurveys.lib/init.js#L3