]> git.wh0rd.org - tt-rss.git/blobdiff - include/login_form.php
minor css fixes
[tt-rss.git] / include / login_form.php
index 891e25e13a24b914d3ac1d90e6f753eabe9da1e8..07e0743c851901f72b3be97c5397aa108f3540f3 100644 (file)
@@ -2,15 +2,22 @@
 <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="css/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/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() {
                border-width : 0px;
        }
 
-       input.input {
+       /*input.input {
                font-family : sans-serif;
                font-size : medium;
                border-spacing : 2px;
                border : 1px solid #b5bcc7;
                padding : 2px;
-       }
+       }*/
 
        label {
                width : 120px;
@@ -181,7 +188,7 @@ function bwLimitChange(elem) {
                <?php } ?>
                <div class="row">
                        <label><?php echo __("Login:") ?></label>
-                       <input name="login" class="input"
+                       <input name="login" class="input input-text" type="text"
                                onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
                                style="width : 220px"
                                required="1"
@@ -192,7 +199,7 @@ function bwLimitChange(elem) {
                <div class="row">
                        <label><?php echo __("Password:") ?></label>
                        <input type="password" name="password" required="1"
-                                       style="width : 220px" class="input"
+                                       style="width : 220px" class="input input-text"
                                        value="<?php echo $_SESSION["fake_password"] ?>"/>
                        <label></label>
                <?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
@@ -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>