The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/ui-master/client/main.html

42 lines
1.1 KiB

<template name="main">
{{#if subsReady}}
{{#unless logged}}
{{#if useIframe}}
{{#if iframeUrl}}
<iframe src="{{iframeUrl}}" style="height: 100%; width: 100%;"></iframe>
{{/if}}
{{else}}
{{> loginLayout center="loginForm"}}
{{/if}}
{{ CustomScriptLoggedOut }}
{{else}}
{{#unless hasUsername}}
{{> username}}
{{else}}
{{#if requirePasswordChange}}
{{> loginLayout center="resetPassword"}}
{{else}}
{{#if require2faSetup}}
<main id="rocket-chat" class="{{embeddedVersion}}">
<div class="rc-old main-content content-background-color">
{{> accountSecurity }}
</div>
</main>
{{else}}
<div id="rocket-chat" class="{{embeddedVersion}} menu-nav">
{{#unless removeSidenav}}
{{> sideNav }}
{{/unless}}
<div class="rc-old main-content content-background-color {{readReceiptsEnabled}}">
{{> Template.dynamic template=center}}
</div>
</div>
{{/if}}
{{/if}}
{{/unless}}
{{ CustomScriptLoggedIn }}
{{/unless}}
{{else}}
{{> loading}}
{{/if}}
</template>