summaryrefslogtreecommitdiff
path: root/login_form.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-06-24 08:43:20 +0100
committerAndrew Dolgov <[email protected]>2008-06-24 08:43:20 +0100
commita598370dde80604280f1a9708f8427902f376209 (patch)
tree351e7617d5245abfc672c3fc0895c0e054ba232f /login_form.php
parentd16d57ff2b8742c51516fefccc8495260d4738c7 (diff)
add low bandwidth mode (less automatic requests in the background)
Diffstat (limited to 'login_form.php')
-rw-r--r--login_form.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/login_form.php b/login_form.php
index e3f0475b1..6f3c61aca 100644
--- a/login_form.php
+++ b/login_form.php
@@ -22,6 +22,12 @@ function init() {
var login = document.forms["loginForm"].login;
+ var limit_set = getCookie("ttrss_bwlimit");
+
+ if (limit_set == "true") {
+ document.forms["loginForm"].bw_limit.checked = true;
+ }
+
login.focus();
}
@@ -37,6 +43,18 @@ function languageChange(elem) {
}
}
+function bwLimitChange(elem) {
+ try {
+ var limit_set = elem.checked;
+
+ setCookie("ttrss_bwlimit", limit_set,
+ <?php print SESSION_COOKIE_LIFETIME ?>);
+
+ } catch (e) {
+ exception_error("bwLimitChange", e);
+ }
+}
+
function validateLoginForm(f) {
try {
@@ -100,6 +118,7 @@ window.onload = init;
<input type="checkbox" name="remember_me" id="remember_me">
<label for="remember_me">Remember me on this computer</label>
</td></tr> -->
+
<tr><td colspan="2" align="right" class="innerLoginCell">
<?php if (defined('_ENABLE_REGISTRATION')) { ?>
@@ -111,6 +130,18 @@ window.onload = init;
<input type="hidden" name="rt"
value="<?php if ($return_to != 'none') { echo $return_to; } ?>">
</td></tr>
+
+ <tr><td colspan="2" align="right" class="innerLoginCell">
+
+ <div class="small">
+ <input name="bw_limit" id="bw_limit" type="checkbox"
+ onchange="bwLimitChange(this)">
+ <label for="bw_limit">
+ <?php echo __("Limit bandwidth use") ?></label></div>
+
+ </td></tr>
+
+
</table>
</td>
</tr><tr>