3 <title>Tiny Tiny RSS : Login</title>
4 <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
5 <link rel="stylesheet" type="text/css" href="tt-rss.css">
6 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
7 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8 <script type="text/javascript" src="lib/dojo/dojo.js"></script>
9 <script type="text/javascript" src="lib/dijit/dijit.js"></script>
10 <script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
11 <script type="text/javascript" src="lib/prototype.js"></script>
12 <script type="text/javascript" src="js/functions.js"></script>
13 <script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
14 <script type="text/javascript">
15 Event.observe(window, 'load', function() {
19 <style type="text/css">
34 font-family : sans-serif;
37 border : 1px solid #b5bcc7;
44 display : inline-block;
50 border-width : 0px 0px 1px 0px;
52 border-color : #88b0f0;
60 border-width : 1px 0px 0px 0px;
62 border-color : #88b0f0;
77 padding : 0px 0px 5px 0px;
83 padding : 0px 0px 5px 0px;
89 <body id="ttrssLogin" class="claro">
91 <script type="text/javascript">
93 dojo.require("dijit.form.Button");
94 dojo.require("dijit.form.CheckBox");
95 dojo.require("dijit.form.Form");
96 dojo.require("dijit.form.Select");
97 dojo.require("dijit.form.TextBox");
98 dojo.require("dijit.form.ValidationTextBox");
104 dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
107 function fetchProfiles() {
109 var query = "?op=getProfiles&login=" + param_escape(document.forms["loginForm"].login.value);
112 new Ajax.Request("public.php", {
114 onComplete: function(transport) {
115 if (transport.responseText.match("select")) {
116 $('profile_box').innerHTML = transport.responseText;
117 dojo.parser.parse('profile_box');
123 exception_error("fetchProfiles", e);
128 function gotoRegForm() {
129 window.location.href = "register.php";
133 function bwLimitChange(elem) {
135 var limit_set = elem.checked;
137 setCookie("ttrss_bwlimit", limit_set,
138 <?php print SESSION_COOKIE_LIFETIME ?>);
141 exception_error("bwLimitChange", e);
146 <?php $return = urlencode($_SERVER["REQUEST_URI"]) ?>
148 <form action="public.php?return=<?php echo $return ?>"
149 dojoType="dijit.form.Form" method="POST" id="loginForm" name="loginForm">
151 <input dojoType="dijit.form.TextBox" style="display : none" name="op" value="login">
154 <img src="images/logo_wide.png">
160 <?php if ($_SESSION["login_error_msg"]) { ?>
161 <div class="row-error">
162 <?php echo $_SESSION["login_error_msg"] ?>
164 <?php $_SESSION["login_error_msg"] = ""; ?>
167 <label><?php echo __("Login:") ?></label>
168 <input name="login" class="input"
169 onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
170 style="width : 220px"
172 value="<?php echo $_SESSION["fake_login"] ?>" />
176 <label><?php echo __("Password:") ?></label>
177 <input type="password" name="password" required="1"
178 style="width : 220px" class="input"
179 value="<?php echo $_SESSION["fake_password"] ?>"/>
183 <label><?php echo __("Language:") ?></label>
185 print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
186 "style='width : 220px; margin : 0px' dojoType='dijit.form.Select'");
191 <label><?php echo __("Profile:") ?></label>
193 <span id='profile_box'><select disabled='disabled' dojoType='dijit.form.Select'
194 style='width : 220px; margin : 0px'>
195 <option><?php echo __("Default profile") ?></option></select></span>
200 <label> </label>
201 <input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit" type="checkbox"
202 onchange="bwLimitChange(this)">
203 <label style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
206 <div class="row" style='text-align : right'>
207 <button dojoType="dijit.form.Button" type="submit"><?php echo __('Log in') ?></button>
208 <?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
209 <button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
210 <?php echo __("Create new account") ?></button>
220 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
221 <?php if (!defined('HIDE_VERSION')) { ?>
222 v<?php echo VERSION ?>
224 © 2005–<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>