aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-03-31 00:16:28 +0530
committerDhruv Goel <dhruv.goel92@gmail.com>2012-05-17 14:02:12 +0530
commit5ce46cc9603ccc153bf26168b18afee0f3b645af (patch)
treed349698b51a4060b3e56a10efbdc9f74da6b6c02 /phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
parent1d0607cbb31865b5128a1a2b92b415386aee0788 (diff)
downloadforums-5ce46cc9603ccc153bf26168b18afee0f3b645af.tar
forums-5ce46cc9603ccc153bf26168b18afee0f3b645af.tar.gz
forums-5ce46cc9603ccc153bf26168b18afee0f3b645af.tar.bz2
forums-5ce46cc9603ccc153bf26168b18afee0f3b645af.tar.xz
forums-5ce46cc9603ccc153bf26168b18afee0f3b645af.zip
[feature/delete-auto-logins] User can view/delete auto logins.
User has an extra option in UCP->Profile to view the auto logins and clear them. PHPBB3-9647
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html')
-rw-r--r--phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html b/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
new file mode 100644
index 0000000000..ad7b7a920d
--- /dev/null
+++ b/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
@@ -0,0 +1,45 @@
+<!-- INCLUDE ucp_header.html -->
+
+<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
+
+<h2>{L_TITLE}</h2>
+<div class="panel">
+ <div class="inner"><span class="corners-top"><span></span></span>
+
+ <fieldset>
+ <!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
+ <!-- IF .sessions -->
+ <p>{L_PROFILE_AUTOLOGIN_KEYS}</p>
+ <table>
+ <tr>
+ <th></th>
+ <th>Key</th>
+ <th>IP</th>
+ <th>Login-Time</th>
+ </tr>
+ <!-- BEGIN sessions -->
+ <tr>
+ <td><input type="checkbox" name="keys[]" value="{sessions.KEY}" /></td>
+ <td>{sessions.KEY}</td>
+ <td>{sessions.IP}</td>
+ <td>{sessions.LOGIN_TIME}</td>
+ </tr>
+ <!-- END sessions -->
+ </table>
+ <!-- ELSE -->
+ <p>{L_PROFILE_NO_AUTOLOGIN_KEYS}</p>
+ <!-- ENDIF -->
+ </fieldset>
+ <span class="corners-bottom"><span></span></span></div>
+</div>
+
+<!-- IF .sessions -->
+ <fieldset class="submit-buttons">
+ {S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />&nbsp;
+ <input type="submit" name="submit" value="{L_DELETE}" class="button1" />
+ {S_FORM_TOKEN}
+ </fieldset>
+<!-- ENDIF -->
+</form>
+
+<!-- INCLUDE ucp_footer.html -->