Files
sweater/src/main/resources/templates/login.ftl
Leonid fe4932fff5 - Добавил reCaptcha
- Добавил поддержку rememberMe и хранение сессий в БД.

https://www.youtube.com/watch?v=7cDpbAbhyjc&list=PLU2ftbIeotGpAYRP9Iv2KLIwK36-o_qYk&index=14
2025-02-19 20:06:14 +03:00

16 lines
459 B
Plaintext

<#import "parts/common.ftl" as com>
<#import "parts/login.ftl" as l>
<@com.page>
<#if SPRING_SECURITY_LAST_EXCEPTION??>
<div class="alert alert-danger" role="alert">
${SPRING_SECURITY_LAST_EXCEPTION.message}
</div>
</#if>
<#if message??>
<div <#if messageType??>class="alert alert-${messageType}" role="alert"</#if> >
${message}
</div>
</#if>
<@l.login "/login" false/>
</@com.page>