mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
bb882c697c
Add "Skip to content" to improve accessibility GitOrigin-RevId: 43368a65057656bdea10b6be3c598d68bd8e2d40
48 lines
1.3 KiB
Text
48 lines
1.3 KiB
Text
extends ../layout
|
|
|
|
|
|
block append meta
|
|
meta(name="ol-otherSessions" data-type="json" content=sessions)
|
|
|
|
|
|
block content
|
|
main.content.content-alt#main-content
|
|
.container
|
|
.row
|
|
.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
|
|
.card.clear-user-sessions(ng-controller="ClearSessionsController", ng-cloak)
|
|
.page-header
|
|
h1 #{translate("your_sessions")}
|
|
|
|
div
|
|
p.small
|
|
| !{translate("clear_sessions_description")}
|
|
|
|
div
|
|
div(ng-if="state.otherSessions.length == 0")
|
|
p.text-center
|
|
| #{translate("no_other_sessions")}
|
|
|
|
div(ng-if="state.success == true")
|
|
p.text-success.text-center
|
|
| #{translate('clear_sessions_success')}
|
|
|
|
div(ng-if="state.otherSessions.length != 0")
|
|
table.table.table-striped
|
|
thead
|
|
tr
|
|
th #{translate("ip_address")}
|
|
th #{translate("session_created_at")}
|
|
tr(ng-repeat="session in state.otherSessions")
|
|
td {{session.ip_address}}
|
|
td {{session.session_created | formatDate}}
|
|
|
|
p.actions
|
|
.text-center
|
|
button.btn.btn-lg.btn-primary(
|
|
ng-click="clearSessions()"
|
|
) #{translate('clear_sessions')}
|
|
|
|
div(ng-if="state.error == true")
|
|
p.text-danger.error
|
|
| #{translate('generic_something_went_wrong')}
|