diff --git a/src/QUI/Interview/Controls/IntervieweeData.html b/src/QUI/Interview/Controls/IntervieweeData.html
new file mode 100644
index 0000000000000000000000000000000000000000..45e0bfccc5d437333d11175e833eb796acb690ff
--- /dev/null
+++ b/src/QUI/Interview/Controls/IntervieweeData.html
@@ -0,0 +1,17 @@
+{if $this->getAttribute('showTitle') && $this->getAttribute('frontendTitle')}
+    <header class="control-header">
+        <h1>{$this->getAttribute('frontendTitle')}</h1>
+    </header>
+{/if}
+
+{if $this->getAttribute('content') != ""}
+    <div class="control-body">
+        {$this->getAttribute('content')}
+    </div>
+{/if}
+
+<div class="control-template">
+    {if isset($controlTemplate) && $controlTemplate}
+        {$controlTemplate}
+    {/if}
+</div>
\ No newline at end of file