]> git.wh0rd.org - tt-rss.git/blob - include/login_form.php
drop undesired shilling
[tt-rss.git] / include / login_form.php
1 <?php startup_gettext(); ?>
2 <html>
3 <head>
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">
9 <?php
10 foreach (array("lib/prototype.js",
11 "lib/dojo/dojo.js",
12 "lib/dojo/tt-rss-layer.js",
13 "js/functions.js",
14 "errors.php?mode=js") as $jsfile) {
15
16 echo javascript_tag($jsfile);
17
18 } ?>
19
20 <script type="text/javascript">
21 require({cache:{}});
22 Event.observe(window, 'load', function() {
23 init();
24 });
25 </script>
26 </head>
27
28 <body class="claro ttrss_main ttrss_login">
29
30 <script type="text/javascript">
31 function init() {
32
33 require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
34 'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
35 parser.parse();
36 //show tooltip node only after this widget is instaniated.
37 dojo.query('div[dojoType="dijit.Tooltip"]').style({
38 display:''
39 });
40 fetchProfiles();
41 dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
42 document.forms.loginForm.login.focus();
43 });
44
45 }
46
47 function fetchProfiles() {
48 try {
49 var query = "op=getProfiles&login=" + param_escape(document.forms["loginForm"].login.value);
50
51 if (query) {
52 new Ajax.Request("public.php", {
53 parameters: query,
54 onComplete: function(transport) {
55 if (transport.responseText.match("select")) {
56 $('profile_box').innerHTML = transport.responseText;
57 //dojo.parser.parse('profile_box');
58 }
59 } });
60 }
61
62 } catch (e) {
63 exception_error("fetchProfiles", e);
64 }
65 }
66
67
68 function gotoRegForm() {
69 window.location.href = "register.php";
70 return false;
71 }
72
73 function bwLimitChange(elem) {
74 try {
75 var limit_set = elem.checked;
76
77 setCookie("ttrss_bwlimit", limit_set,
78 <?php print SESSION_COOKIE_LIFETIME ?>);
79
80 } catch (e) {
81 exception_error("bwLimitChange", e);
82 }
83 }
84 </script>
85
86 <?php $return = urlencode($_SERVER["REQUEST_URI"]) ?>
87
88 <form action="public.php?return=<?php echo $return ?>"
89 dojoType="dijit.form.Form" method="POST" id="loginForm" name="loginForm">
90
91 <input dojoType="dijit.form.TextBox" style="display : none" name="op" value="login">
92
93 <div class='header'>
94 <img src="images/logo_wide.png">
95 </div>
96
97 <div class='form'>
98
99 <fieldset>
100 <?php if ($_SESSION["login_error_msg"]) { ?>
101 <div class="row-error">
102 <?php echo $_SESSION["login_error_msg"] ?>
103 </div>
104 <?php $_SESSION["login_error_msg"] = ""; ?>
105 <?php } ?>
106 <div class="row">
107 <label><?php echo __("Login:") ?></label>
108 <input name="login" class="input input-text" type="text"
109 onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
110 style="width : 220px"
111 required="1"
112 value="<?php echo $_SESSION["fake_login"] ?>" />
113 </div>
114
115
116 <div class="row">
117 <label><?php echo __("Password:") ?></label>
118 <input type="password" name="password" required="1"
119 style="width : 220px" class="input input-text"
120 value="<?php echo $_SESSION["fake_password"] ?>"/>
121 <label></label>
122 <?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
123 <a class='forgotpass' href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
124 <?php } ?>
125 </div>
126
127
128 <div class="row">
129 <label><?php echo __("Profile:") ?></label>
130
131 <span id='profile_box'><select disabled='disabled' dojoType='dijit.form.Select'
132 style='width : 220px; margin : 0px'>
133 <option><?php echo __("Default profile") ?></option></select></span>
134
135 </div>
136
137 <div class="row">
138 <label>&nbsp;</label>
139 <input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit" type="checkbox"
140 onchange="bwLimitChange(this)">
141 <label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
142 </div>
143
144 <div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
145 <?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
146 </div>
147
148 <?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
149
150 <div class="row">
151 <label>&nbsp;</label>
152 <input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
153 <label style='display : inline' for="remember_me"><?php echo __("Remember me") ?></label>
154 </div>
155
156 <?php } ?>
157
158 <div class="row" style='text-align : right'>
159 <button dojoType="dijit.form.Button" type="submit"><?php echo __('Log in') ?></button>
160 <?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
161 <button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
162 <?php echo __("Create new account") ?></button>
163 <?php } ?>
164 </div>
165
166 </fieldset>
167
168
169 </div>
170
171 <div class='footer'>
172 <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
173 </div>
174
175 </form>
176
177 </body></html>