RomZay commited on
Commit
5ed836f
·
verified ·
1 Parent(s): 038f1cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -110,14 +110,17 @@ def render_message(history):
110
  messages_html += """
111
  </div></div>
112
  <script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.3.3/purify.min.js"></script>
 
 
 
 
113
  """
114
  return messages_html
115
 
116
 
117
  js = """
118
  function HTMLClean() {
119
- var cleanHTML = DOMPurify.sanitize(userInputHTML);
120
- document.getElementById("output").innerHTML = cleanHTML;
121
  }
122
  """
123
 
 
110
  messages_html += """
111
  </div></div>
112
  <script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.3.3/purify.min.js"></script>
113
+ <script>
114
+ var cleanHTML = DOMPurify.sanitize(userInputHTML);
115
+ document.getElementById("output").innerHTML = cleanHTML;
116
+ </script>
117
  """
118
  return messages_html
119
 
120
 
121
  js = """
122
  function HTMLClean() {
123
+ alert("This page is in-dev stage, expect lots of restarts, the interface is open-sourced (not the backend that is responsible for API Keys)")
 
124
  }
125
  """
126