]> git.wh0rd.org - tt-rss.git/blobdiff - include/login_form.php
drop undesired shilling
[tt-rss.git] / include / login_form.php
index ba2917efa76df0311c03da2a497466463e8fcc95..8efc81289570b64f8399ba567bae326ef205b18f 100644 (file)
@@ -1,97 +1,52 @@
+<?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/default.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>
-       <style type="text/css">
-       body#ttrssLogin {
-               padding : 2em;
-               font-size : 14px;
-       }
-
-       fieldset {
-               margin-left : auto;
-               margin-right : auto;
-               display : block;
-               width : 400px;
-               border-width : 0px;
-       }
-
-       label {
-               width : 120px;
-               margin-right : 20px;
-               display : inline-block;
-               text-align : right;
-               color : gray;
-       }
-
-       div.header {
-               border-width : 0px 0px 1px 0px;
-               border-style : solid;
-               border-color : #88b0f0;
-               margin-bottom : 1em;
-               padding-bottom : 5px;
-       }
-
-       div.footer {
-               margin-top : 1em;
-               padding-top : 5px;
-               border-width : 1px 0px 0px 0px;
-               border-style : solid;
-               border-color : #88b0f0;
-               text-align : center;
-               color : gray;
-               font-size : 12px;
-       }
-
-       div.footer a {
-               color : gray;
-       }
-
-       div.footer a:hover {
-               color : #88b0f0;
-       }
-
-       div.row {
-               padding : 0px 0px 5px 0px;
-       }
-       </style>
 </head>
 
-<body id="ttrssLogin" class="claro">
+<body class="claro ttrss_main ttrss_login">
 
 <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');
 }
 
 function fetchProfiles() {
        try {
-               var query = "?op=getProfiles&login=" + param_escape(document.forms["loginForm"].login.value);
+               var query = "op=getProfiles&login=" + param_escape(document.forms["loginForm"].login.value);
 
                if (query) {
                        new Ajax.Request("public.php",  {
@@ -99,7 +54,7 @@ function fetchProfiles() {
                                onComplete: function(transport) {
                                        if (transport.responseText.match("select")) {
                                                $('profile_box').innerHTML = transport.responseText;
-                                               dojo.parser.parse('profile_box');
+                                               //dojo.parser.parse('profile_box');
                                        }
                        } });
                }
@@ -142,33 +97,39 @@ function bwLimitChange(elem) {
 <div class='form'>
 
        <fieldset>
-
+               <?php if ($_SESSION["login_error_msg"]) { ?>
+               <div class="row-error">
+                       <?php echo $_SESSION["login_error_msg"] ?>
+               </div>
+                       <?php $_SESSION["login_error_msg"] = ""; ?>
+               <?php } ?>
                <div class="row">
                        <label><?php echo __("Login:") ?></label>
-                       <input name="login"
+                       <input name="login" class="input input-text" type="text"
                                onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
-                               dojoType="dijit.form.TextBox" required="1"
+                               style="width : 220px"
+                               required="1"
                                value="<?php echo $_SESSION["fake_login"] ?>" />
                </div>
 
+
                <div class="row">
                        <label><?php echo __("Password:") ?></label>
-                       <input type="password" name="password" dojoType="dijit.form.TextBox" required="1"
+                       <input type="password" name="password" required="1"
+                                       style="width : 220px" class="input input-text"
                                        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(),
-                                       "dojoType='dijit.form.Select'");
-                       ?>
-               </div>
 
                <div class="row">
                        <label><?php echo __("Profile:") ?></label>
 
-                       <span id='profile_box'><select disabled='disabled' dojoType='dijit.form.Select'>
+                       <span id='profile_box'><select disabled='disabled' dojoType='dijit.form.Select'
+                               style='width : 220px; margin : 0px'>
                                <option><?php echo __("Default profile") ?></option></select></span>
 
                </div>
@@ -177,9 +138,23 @@ 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) { ?>
+
+               <div class="row">
+                       <label>&nbsp;</label>
+                       <input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
+                       <label style='display : inline' for="remember_me"><?php echo __("Remember me") ?></label>
+               </div>
+
+               <?php } ?>
+
                <div class="row" style='text-align : right'>
                        <button dojoType="dijit.form.Button" type="submit"><?php echo __('Log in') ?></button>
                        <?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
@@ -195,10 +170,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>
 
 </form>