- Добавил поддержку rememberMe и хранение сессий в БД. https://www.youtube.com/watch?v=7cDpbAbhyjc&list=PLU2ftbIeotGpAYRP9Iv2KLIwK36-o_qYk&index=14
16 lines
459 B
Plaintext
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> |