88 lines
3.7 KiB
Plaintext
88 lines
3.7 KiB
Plaintext
<#macro registrationLayout bodyClass="" displayInfo=false displayMessage=true displayWide=false>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" class="${properties.kcHtmlClass!}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<#if properties.meta?has_content>
|
|
<#list properties.meta?split(' ') as meta>
|
|
<meta name="${meta?split('==')[0]}" content="${meta?split('==')[1]}"/>
|
|
</#list>
|
|
</#if>
|
|
<title>${msg("loginTitle",(realm.displayName!''))}</title>
|
|
<link rel="icon" href="${url.resourcesPath}/img/favicon.ico" />
|
|
<#if properties.styles?has_content>
|
|
<#list properties.styles?split(' ') as style>
|
|
<link href="${url.resourcesPath}/${style}" rel="stylesheet" />
|
|
</#list>
|
|
</#if>
|
|
<#if properties.scripts?has_content>
|
|
<#list properties.scripts?split(' ') as script>
|
|
<script src="${url.resourcesPath}/${script}" type="text/javascript"></script>
|
|
</#list>
|
|
</#if>
|
|
<#if scripts??>
|
|
<#list scripts as script>
|
|
<script src="${script}" type="text/javascript"></script>
|
|
</#list>
|
|
</#if>
|
|
</head>
|
|
|
|
<body class="login-content" style="background-image: url("${url.resourcesPath}/img/background.svg");">
|
|
<div class="${properties.kcLoginClass!}">
|
|
<div class="full-width header-image text-center-align">
|
|
<img src="${url.resourcesPath}/img/logo.png">
|
|
</div>
|
|
<div style="font-size:36px;" class="welcome-heading text-center-align" >PRD认证中心</div>
|
|
<div class="${properties.kcFormCardClass!} <#if displayWide>${properties.kcFormCardAccountClass!}</#if>">
|
|
<header class="${properties.kcFormHeaderClass!}">
|
|
<#if realm.internationalizationEnabled && locale.supported?size gt 1>
|
|
<div id="kc-locale">
|
|
<div id="kc-locale-wrapper" class="${properties.kcLocaleWrapperClass!}">
|
|
<div class="kc-dropdown" id="kc-locale-dropdown">
|
|
<a href="#" id="kc-current-locale-link">${locale.current}</a>
|
|
<ul>
|
|
<#list locale.supported as l>
|
|
<li class="kc-dropdown-item"><a href="${l.url}">${l.label}</a></li>
|
|
</#list>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</#if>
|
|
<h1 id="kc-page-title"><#nested "header"></h1>
|
|
</header>
|
|
<div id="kc-content">
|
|
<div id="kc-content-wrapper">
|
|
|
|
<#if displayMessage && message?has_content>
|
|
<div class="alert alert-${message.type}">
|
|
<#if message.type = 'success'><span class="${properties.kcFeedbackSuccessIcon!}"></span></#if>
|
|
<#if message.type = 'warning'><span class="${properties.kcFeedbackWarningIcon!}"></span></#if>
|
|
<#if message.type = 'error'><span class="${properties.kcFeedbackErrorIcon!}"></span></#if>
|
|
<#if message.type = 'info'><span class="${properties.kcFeedbackInfoIcon!}"></span></#if>
|
|
<span class="kc-feedback-text">${kcSanitize(message.summary)?no_esc}</span>
|
|
</div>
|
|
</#if>
|
|
|
|
<#nested "form">
|
|
|
|
<#if displayInfo>
|
|
<div id="kc-info" class="${properties.kcSignUpClass!}">
|
|
<div id="kc-info-wrapper" class="${properties.kcInfoAreaWrapperClass!}">
|
|
<#nested "info">
|
|
</div>
|
|
</div>
|
|
</#if>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
</#macro>
|