22 lines
931 B
HTML
22 lines
931 B
HTML
<!doctype html>
|
|
<html
|
|
xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{modules/gateway_fragments_layout :: layout(title = |#{title} - ${site.title}|, head = null, body = ~{::body})}"
|
|
>
|
|
<th:block th:fragment="body">
|
|
<div class="gateway-wrapper">
|
|
<div th:replace="~{modules/gateway_fragments_logo::logo}"></div>
|
|
|
|
<div class="halo-form-wrapper">
|
|
<div th:replace="~{gateway_fragments/login::form}"></div>
|
|
<div th:replace="~{gateway_fragments/login::formAuthProviders}"></div>
|
|
<div th:replace="~{gateway_fragments/common::socialAuthProviders}"></div>
|
|
</div>
|
|
|
|
<div th:replace="~{gateway_fragments/common::signupNoticeContent}"></div>
|
|
<div th:replace="~{gateway_fragments/common::returnToSiteContent}"></div>
|
|
<div th:replace="~{gateway_fragments/common::languageSwitcher}"></div>
|
|
</div>
|
|
</th:block>
|
|
</html>
|