]> git.wh0rd.org - tt-rss.git/blobdiff - include/login_form.php
remove some unnecessary dropdownbutton margins
[tt-rss.git] / include / login_form.php
index 7ac7111c895f20fba1efdb8c4ffcea80833a850e..0000bc2f6438d37c9f4951336174f4cc1dd2cc9e 100644 (file)
@@ -1,17 +1,25 @@
+<?php startup_gettext(); ?>
 <html>
 <head>
        <title>Tiny Tiny RSS : Login</title>
-       <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
-       <link rel="stylesheet" type="text/css" href="tt-rss.css">
+       <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css") ?>
+       <?php echo stylesheet_tag("css/tt-rss.css") ?>
+       <?php echo stylesheet_tag("css/dijit.css") ?>
        <link rel="shortcut icon" type="image/png" href="images/favicon.png">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-       <script type="text/javascript" src="lib/dojo/dojo.js"></script>
-       <script type="text/javascript" src="lib/dijit/dijit.js"></script>
-       <script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
-       <script type="text/javascript" src="lib/prototype.js"></script>
-       <script type="text/javascript" src="js/functions.js"></script>
-       <script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
+       <?php
+       foreach (array("lib/prototype.js",
+                               "lib/dojo/dojo.js",
+                               "lib/dojo/tt-rss-layer.js",
+                               "js/functions.js",
+                               "errors.php?mode=js") as $jsfile) {
+
+               echo javascript_tag($jsfile);
+
+       } ?>
+
        <script type="text/javascript">
+               require({cache:{}});
                Event.observe(window, 'load', function() {
                        init();
                });
 
 <script type="text/javascript">
 function init() {
-       dojo.require("dijit.form.Button");
-       dojo.require("dijit.form.CheckBox");
-       dojo.require("dijit.form.Form");
-       dojo.require("dijit.form.Select");
-       dojo.require("dijit.form.TextBox");
-       dojo.require("dijit.form.ValidationTextBox");
 
-       dojo.parser.parse();
+       require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
+       'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
+               parser.parse();
+               //show tooltip node only after this widget is instaniated.
+               dojo.query('div[dojoType="dijit.Tooltip"]').style({
+                       display:''
+               });
+               fetchProfiles();
+               dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
+               document.forms.loginForm.login.focus();
+       });
 
-       fetchProfiles();
-
-       dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
-
-       document.forms.loginForm.login.focus();
 }
 
 function fetchProfiles() {
@@ -188,22 +195,18 @@ function bwLimitChange(elem) {
                                value="<?php echo $_SESSION["fake_login"] ?>" />
                </div>
 
+
                <div class="row">
                        <label><?php echo __("Password:") ?></label>
                        <input type="password" name="password" required="1"
                                        style="width : 220px" class="input"
                                        value="<?php echo $_SESSION["fake_password"] ?>"/>
                        <label></label>
+               <?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
                        <a class='forgotpass' href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
+               <?php } ?>
                </div>
 
-               <div class="row">
-                       <label><?php echo __("Language:") ?></label>
-                       <?php
-                               print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
-                                       "style='width : 220px; margin : 0px' dojoType='dijit.form.Select'");
-                       ?>
-               </div>
 
                <div class="row">
                        <label><?php echo __("Profile:") ?></label>
@@ -218,7 +221,11 @@ function bwLimitChange(elem) {
                        <label>&nbsp;</label>
                        <input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit" type="checkbox"
                                onchange="bwLimitChange(this)">
-                       <label style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
+                       <label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
+               </div>
+
+               <div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
+<?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
                </div>
 
                <?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
@@ -246,9 +253,6 @@ function bwLimitChange(elem) {
 
 <div class='footer'>
        <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
-       <?php if (!defined('HIDE_VERSION')) { ?>
-                v<?php echo VERSION ?>
-       <?php } ?>
        &copy; 2005&ndash;<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>
 </div>