1 <?php startup_gettext(); ?>
4 <title>Tiny Tiny RSS : Login</title>
5 <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css") ?>
6 <?php echo stylesheet_tag("css/default.css") ?>
7 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10 foreach (array("lib/prototype.js",
12 "lib/dojo/tt-rss-layer.js",
14 "errors.php?mode=js") as $jsfile) {
16 echo javascript_tag($jsfile);
20 <script type="text/javascript">
22 Event.observe(window, 'load', function() {
26 <style type="text/css">
41 font-family : sans-serif;
44 border : 1px solid #b5bcc7;
51 display : inline-block;
57 border-width : 0px 0px 1px 0px;
59 border-color : #0088cc;
67 border-width : 1px 0px 0px 0px;
69 border-color : #0088cc;
78 display : inline-block;
87 text-decoration: none;
93 text-decoration: underline;
105 padding : 0px 0px 5px 0px;
111 padding : 0px 0px 5px 0px;
117 <body id="ttrssLogin" class="claro">
119 <script type="text/javascript">
122 require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
123 'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
125 //show tooltip node only after this widget is instaniated.
126 dojo.query('div[dojoType="dijit.Tooltip"]').style({
130 dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
131 document.forms.loginForm.login.focus();
136 function fetchProfiles() {
138 var query = "op=getProfiles&login=" + param_escape(document.forms["loginForm"].login.value);
141 new Ajax.Request("public.php", {
143 onComplete: function(transport) {
144 if (transport.responseText.match("select")) {
145 $('profile_box').innerHTML = transport.responseText;
146 //dojo.parser.parse('profile_box');
152 exception_error("fetchProfiles", e);
157 function gotoRegForm() {
158 window.location.href = "register.php";
162 function bwLimitChange(elem) {
164 var limit_set = elem.checked;
166 setCookie("ttrss_bwlimit", limit_set,
167 <?php print SESSION_COOKIE_LIFETIME ?>);
170 exception_error("bwLimitChange", e);
175 <?php $return = urlencode($_SERVER["REQUEST_URI"]) ?>
177 <form action="public.php?return=<?php echo $return ?>"
178 dojoType="dijit.form.Form" method="POST" id="loginForm" name="loginForm">
180 <input dojoType="dijit.form.TextBox" style="display : none" name="op" value="login">
183 <img src="images/logo_wide.png">
189 <?php if ($_SESSION["login_error_msg"]) { ?>
190 <div class="row-error">
191 <?php echo $_SESSION["login_error_msg"] ?>
193 <?php $_SESSION["login_error_msg"] = ""; ?>
196 <label><?php echo __("Login:") ?></label>
197 <input name="login" class="input input-text" type="text"
198 onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
199 style="width : 220px"
201 value="<?php echo $_SESSION["fake_login"] ?>" />
206 <label><?php echo __("Password:") ?></label>
207 <input type="password" name="password" required="1"
208 style="width : 220px" class="input input-text"
209 value="<?php echo $_SESSION["fake_password"] ?>"/>
211 <?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
212 <a class='forgotpass' href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
218 <label><?php echo __("Profile:") ?></label>
220 <span id='profile_box'><select disabled='disabled' dojoType='dijit.form.Select'
221 style='width : 220px; margin : 0px'>
222 <option><?php echo __("Default profile") ?></option></select></span>
227 <label> </label>
228 <input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit" type="checkbox"
229 onchange="bwLimitChange(this)">
230 <label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
233 <div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
234 <?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
237 <?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
240 <label> </label>
241 <input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
242 <label style='display : inline' for="remember_me"><?php echo __("Remember me") ?></label>
247 <div class="row" style='text-align : right'>
248 <button dojoType="dijit.form.Button" type="submit"><?php echo __('Log in') ?></button>
249 <?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
250 <button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
251 <?php echo __("Create new account") ?></button>
261 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
262 © 2005–<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>