45 lines
2.1 KiB
Plaintext
45 lines
2.1 KiB
Plaintext
<#macro registrationLayout bodyClass="" displayInfo=false displayMessage=true displayRequiredFields=false displayWide=false showAnotherWayIfPresent=true>
|
|
<!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">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="${url.resourcesPath}/css/custom.css">
|
|
|
|
<title>${msg("loginTitle",(realm.displayName!''))}</title>
|
|
<link rel="icon" href="${url.resourcesPath}/images/favicon.ico" />
|
|
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="container-fluid p-0">
|
|
<div class="row">
|
|
<div class="col-md-6 login-section-wrapper">
|
|
<div class="brand-wrapper">
|
|
<img src="${url.resourcesPath}/images/logo_left.png" alt="logo" class="logo">
|
|
</div>
|
|
<div class="login-wrapper my-auto">
|
|
<#nested "form">
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 px-0 d-none d-md-block">
|
|
<#nested "image">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
|
|
<!-- Optional JavaScript -->
|
|
<!-- Popper.js first, then Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|
|
</#macro>
|