summaryrefslogtreecommitdiffstats
path: root/modules-available/session/templates/change-password.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/session/templates/change-password.html')
-rw-r--r--modules-available/session/templates/change-password.html43
1 files changed, 42 insertions, 1 deletions
diff --git a/modules-available/session/templates/change-password.html b/modules-available/session/templates/change-password.html
index 70ab7b92..9f19c695 100644
--- a/modules-available/session/templates/change-password.html
+++ b/modules-available/session/templates/change-password.html
@@ -5,7 +5,48 @@
<input type="password" name="newpass1" class="form-control" placeholder="{{lang_newPassword}}">
<input type="password" name="newpass2" class="form-control" placeholder="{{lang_repeatPassword}}">
</div>
+ <div class="checkbox">
+ <input type="checkbox" id="kill-other-sessions" name="kill-other-sessions" value="1">
+ <label for="kill-other-sessions">{{lang_killOtherSessions}}</label>
+ </div>
<button class="btn btn-lg btn-primary btn-block" type="submit">{{lang_changePassword}}</button>
<input type="hidden" name="action" value="changepw">
<input type="hidden" name="token" value="{{token}}">
-</form> \ No newline at end of file
+</form>
+
+<h2>{{lang_activeSessions}}</h2>
+<table class="table">
+ <thead>
+ <tr>
+ <th>{{lang_user}}</th>
+ <th>{{lang_expires}}</th>
+ <th>{{lang_lastAddress}}</th>
+ <th class="slx-smallcol">{{lang_fixedIpSession}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#sessions}}
+ <tr>
+ <td>
+ {{#link}}
+ <a href="?do=adduser&amp;show=edituser&amp;userid={{userid}}">
+ {{/link}}
+ {{login}}
+ {{#link}}
+ </a>
+ {{/link}}
+ </td>
+ <td>{{dateline_s}}</td>
+ <td>{{lastip}}</td>
+ <td class="text-nowrap">
+ {{#fixedip}}
+ <span class="glyphicon glyphicon-ok"></span>
+ {{/fixedip}}
+ {{^fixedip}}
+ <span class="glyphicon glyphicon-remove"></span>
+ {{/fixedip}}
+ </td>
+ </tr>
+ {{/sessions}}
+ </tbody>
+</table> \ No newline at end of file