Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions imageroot/templates/webtop.properties.d/10builtin
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ webtop.home=/var/lib/nethserver/webtop
webtop.provisioning.api.token=${WEBAPP_API_TOKEN}
webtop.admin.mode.singledomain=true
webtop.admin.logviewer.enabled=false
webtop.login.rememberme.enabled=true
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,14 @@
autocomplete="current-password"
/>
</div>
<#if showRememberMe>
<div class="flex flex-wrap items-center justify-between gap-4 mt-3">
<div class="flex items-center">
<input id="wtrememberme" name="wtrememberme" type="checkbox" value="true" class="w-4 h-4 rounded accent-orange-700 cursor-pointer" <#if showMaintenance>disabled</#if> />
<label for="wtrememberme" class="ml-3 text-sm text-gray-700 dark:text-gray-300 cursor-pointer">Keep me logged on this device</label>
</div>
</div>
</#if>
</div>
</div>
<div class="form-group" <#if !showDomain>style="display: none;"</#if>
Expand Down
Loading