outdated index page after migation from Mendix 4 to 5

0
I have migarted my application from Mendix 4 to 5.When I open the index page it is showing the error "You are using an outdated index page. Please update your index page. See index-example.html in the deployment directory for an example of what the index page should look like."   The content of index.html page is -   <!doctype html> <html>     <head>                  <meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1" />          <meta http-equiv="expires" content="0" />         <meta http-equiv="pragma" content="no-cache" />         <link type="text/css" rel="stylesheet" href="mxclientsystem/mxui/ui/mxui.css" media="screen"/>         <link type="text/css" rel="stylesheet" href="ui/theme-fico/layout.css" media="screen"/>         <link type="text/css" rel="stylesheet" href="ui/theme-fico/custom.css" media="screen"/>                <script type="text/javascript" src="mxclientsystem/dojo/dojo.js"                 djConfig="                 rtlRedirect: 'index3-rtl.html'                 ">         </script>     </head>     <body class="tundra default fico">         <div              id="mainbox"             class="MxClient_mainContainer"             >             <div dojoType="dijit.layout.ContentPane"                  region="top"                  id="topPane"                  class="MxClient_topPane"                  >                 <div class="MxClient_headerPane">                     <div class="MxClient_logoPane png"></div>                     <div class="MxClient_Caption">                         <div dojoType="userattrlabel.widget.UserAttrLabel"                               ulabel="Hosted Originations - "                              uentity="Administration.Account"                               uattr="ClientName"                              >                         </div>             </div>                     <div class="currentUserDiv">                         <div dojoType="userattrlabel.widget.UserAttrLabel"                               ulabel=" Welcome "                              uentity="Administration.Account"                               uattr="FullName"                              >                         </div>                         <div class="log">&nbsp;| <a href="javascript:void(0);" id="log_out"></a></div>                     </div>                 </div>                 <div class="navigationPane_bg">                     <div class="MxClient_navigationPane">                         <div class="MxClient_loader" id="MxClient_loader"></div>                         <div dojoType="mxui.widget.Toolbar" id="MxClient_toolbar" class="MxClient_toolbar"></div>                         <div dojoType="mxui.widget.Navbar" id="MxClient_navbar" class="MxClient_navbar"></div>                     </div>                 </div>                 <!--<div dojoType="mxui.widget.TitlePath" id="MxClient_titlepath" class="MxClient_titlepath"></div>-->             </div>             <div                  class="MxClient_contentContainer"                 >                 <div dojoType="mxui.widget.ScreenBuffer"                      region="center"                      id="contentPort"                      doLayout="false"                      class="MxClient_contentPane"                      >                 </div>             </div>         </div>         <div dojoType="dijit.layout.ContentPane"              region="bottom"              class="MxClient_bottomPane"              >             <div class="MxClient_footerPane">                 Powered by <a target="_blank" href="http://www.mendix.com">Mendix</a>             </div>         </div>         <script type="text/javascript" src="mxclientsystem/mxui/mxui.js"></script>         <script type="text/javascript" src="widgets/userattrlabel/widget/UserAttrLabel.js"></script>         <script type="text/javascript">             (function() {                 var btn = document.getElementById("log_out");                                 dojo.connect(mx.ui, "startup", function() {                     btn.innerHTML = mx.session.isGuest() == true   ? "" : " Log Out ";                 });                 dojo.connect(btn, "click", function() {                     mx.session.logout();                 });             })();         </script>     </body> </html>   Please let me know what could be the reason for this error?
asked
1 answers
0

What you can do is download theming from the appstore and use that index.html as basis for your own theming.

answered