File size: 796 Bytes
3fdcc70
af98bc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3fdcc70
af98bc5
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os
import streamlit as st
import streamlit.components.v1 as components

st.set_page_config(layout="wide")

iframe_html = """
<!DOCTYPE html>
<html>
<head>
  <title>ControlLLM</title>
  <style>
    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
  </style>
</head>
<body>
<div style="text-align:center"> <h1><strong><font style=color:rgba(2200,10,10,1)>This space is currently under maintenance due to network issues 😊😊</font></strong></h1></div>
<div style="text-align:center"><h2>We warmly welcome you to visit our <a href="https://github.com/OpenGVLab/ControlLLM" target="_blank">GitHub</a> if you’re interested πŸŽ‰πŸŽ‰</br></h2></div>
</body>
</html>
"""
components.html(iframe_html, height=1200)