feat: CSAT response collection public page (#2685)

This commit is contained in:
Muhsin Keloth
2021-08-03 18:22:50 +05:30
committed by GitHub
parent 9b01b82cc7
commit 92c14fa87d
18 changed files with 371 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title><%= @global_config['INSTALLATION_NAME'] %></title>
<%= csrf_meta_tags %>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<script>
window.globalConfig = <%= raw @global_config.to_json %>
</script>
<%= javascript_pack_tag 'survey' %>
<%= stylesheet_pack_tag 'survey' %>
</head>
<body>
<div id="app"></div>
<%= yield %>
</body>
</html>