dolibarr 21.0.0-alpha
passwordforgotten.tpl.php
1<?php
2/* Copyright (C) 2009-2010 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2011-2013 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20if (!defined('NOBROWSERNOTIF')) {
21 define('NOBROWSERNOTIF', 1);
22}
23
24// Protection to avoid direct call of template
25if (empty($conf) || !is_object($conf)) {
26 print "Error, template page can't be called as URL";
27 exit(1);
28}
29
30// DDOS protection
31$size = (int) ($_SERVER['CONTENT_LENGTH'] ?? 0);
32if ($size > 10000) {
33 $langs->loadLangs(array("errors", "install"));
34 httponly_accessforbidden('<center>'.$langs->trans("ErrorRequestTooLarge").'<br><a href="'.DOL_URL_ROOT.'">'.$langs->trans("ClickHereToGoToApp").'</a></center>', 413, 1);
35}
36
37require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
38
39header('Cache-Control: Public, must-revalidate');
40
41if (GETPOST('dol_hide_topmenu')) {
42 $conf->dol_hide_topmenu = 1;
43}
44if (GETPOST('dol_hide_leftmenu')) {
45 $conf->dol_hide_leftmenu = 1;
46}
47if (GETPOST('dol_optimize_smallscreen')) {
48 $conf->dol_optimize_smallscreen = 1;
49}
50if (GETPOST('dol_no_mouse_hover')) {
51 $conf->dol_no_mouse_hover = 1;
52}
53if (GETPOST('dol_use_jmobile')) {
54 $conf->dol_use_jmobile = 1;
55}
56
57// If we force to use jmobile, then we reenable javascript
58if (!empty($conf->dol_use_jmobile)) {
59 $conf->use_javascript_ajax = 1;
60}
61
62$php_self = $_SERVER['PHP_SELF'];
63$php_self .= dol_escape_htmltag($_SERVER["QUERY_STRING"]) ? '?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]) : '';
64$php_self = str_replace('action=validatenewpassword', '', $php_self);
65
66$titleofpage = $langs->trans('SendNewPassword');
67
68// Javascript code on logon page only to detect user tz, dst_observed, dst_first, dst_second
69$arrayofjs = array();
70
71$disablenofollow = 1;
72if (!preg_match('/'.constant('DOL_APPLICATION_TITLE').'/', $title)) {
73 $disablenofollow = 0;
74}
75if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
76 $disablenofollow = 0;
77}
78
79top_htmlhead('', $titleofpage, 0, 0, $arrayofjs, array(), 1, $disablenofollow);
80
81
82$colorbackhmenu1 = '60,70,100'; // topmenu
83if (!isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) {
84 $conf->global->THEME_ELDY_TOPMENU_BACK1 = $colorbackhmenu1;
85}
86$colorbackhmenu1 = getDolUserString('THEME_ELDY_ENABLE_PERSONALIZED') ? getDolUserString('THEME_ELDY_TOPMENU_BACK1', $colorbackhmenu1) : getDolGlobalString('THEME_ELDY_TOPMENU_BACK1', $colorbackhmenu1);
87$colorbackhmenu1 = implode(',', colorStringToArray($colorbackhmenu1)); // Normalize value to 'x,y,z'
88
89?>
90<!-- BEGIN PHP TEMPLATE PASSWORDFORGOTTEN.TPL.PHP -->
91
92<body class="body bodylogin"<?php print !getDolGlobalString('MAIN_LOGIN_BACKGROUND') ? '' : ' style="background-size: cover; background-position: center center; background-attachment: fixed; background-repeat: no-repeat; background-image: url(\''.DOL_URL_ROOT.'/viewimage.php?cache=1&noalt=1&modulepart=mycompany&file='.urlencode('logos/' . getDolGlobalString('MAIN_LOGIN_BACKGROUND')).'\')"'; ?>>
93
94<?php if (empty($conf->dol_use_jmobile)) { ?>
95<script>
96$(document).ready(function () {
97 // Set focus on correct field
98 <?php if ($focus_element) {
99 ?>$('#<?php echo $focus_element; ?>').focus(); <?php
100 } ?> // Warning to use this only on visible element
101});
102</script>
103<?php } ?>
104
105<div class="login_center center"<?php
106if (!getDolGlobalString('ADD_UNSPLASH_LOGIN_BACKGROUND')) {
107 $backstyle = 'background: linear-gradient('.($conf->browser->layout == 'phone' ? '0deg' : '4deg').', rgb(240,240,240) 52%, rgb('.$colorbackhmenu1.') 52.1%);';
108 // old style: $backstyle = 'background-image: linear-gradient(rgb('.$colorbackhmenu1.',0.3), rgb(240,240,240));';
109 $backstyle = getDolGlobalString('MAIN_LOGIN_BACKGROUND_STYLE', $backstyle);
110 print !getDolGlobalString('MAIN_LOGIN_BACKGROUND') ? ' style="background-size: cover; background-position: center center; background-attachment: fixed; background-repeat: no-repeat; '.$backstyle.'"' : '';
111}
112?>>
113<div class="login_vertical_align">
114
115<form id="login" name="login" method="POST" action="<?php echo $php_self; ?>">
116<input type="hidden" name="token" value="<?php echo newToken(); ?>">
117<input type="hidden" name="action" value="buildnewpassword">
118
119
120<!-- Title with version -->
121<div class="login_table_title center" title="<?php echo dol_escape_htmltag($title); ?>">
122<?php
123if (!empty($disablenofollow)) {
124 echo '<a class="login_table_title" href="https://www.dolibarr.org" target="_blank" rel="noopener noreferrer external">';
125}
126echo dol_escape_htmltag($title);
127if (!empty($disablenofollow)) {
128 echo '</a>';
129}
130?>
131</div>
132
133
134
135<div class="login_table">
136
137<div id="login_line1">
138
139<div id="login_left">
140<img alt="" title="" src="<?php echo $urllogo; ?>" id="img_logo" />
141</div>
142
143<br>
144
145<div id="login_right">
146
147<div class="tagtable centpercent" title="Login pass" >
148
149<!-- Login -->
150<div class="trinputlogin">
151<div class="tagtd nowraponall center valignmiddle tdinputlogin">
152<!-- <span class="span-icon-user">-->
153<span class="fa fa-user"></span>
154<input type="text" maxlength="255" placeholder="<?php echo $langs->trans("Login"); ?>" <?php echo $disabled; ?> id="username" name="username" class="flat input-icon-user minwidth150" value="<?php echo dol_escape_htmltag($username); ?>" tabindex="1" autocapitalize="off" autocomplete="on" spellcheck="false" autocorrect="off" />
155</div>
156</div>
157
158<?php
159if (!empty($captcha)) {
160 // Add a variable param to force not using cache (jmobile)
161 $php_self = preg_replace('/[&\?]time=(\d+)/', '', $php_self); // Remove param time
162 if (preg_match('/\?/', $php_self)) {
163 $php_self .= '&time='.dol_print_date(dol_now(), 'dayhourlog');
164 } else {
165 $php_self .= '?time='.dol_print_date(dol_now(), 'dayhourlog');
166 }
167 // TODO: provide accessible captcha variants?>
168 <!-- Captcha -->
169 <div class="trinputlogin">
170 <div class="tagtd tdinputlogin nowrap none valignmiddle">
171
172 <span class="fa fa-unlock"></span>
173 <span class="nofa inline-block">
174 <input id="securitycode" placeholder="<?php echo $langs->trans("SecurityCode"); ?>" class="flat input-icon-security width125" type="text" maxlength="5" name="code" tabindex="3" autocomplete="off" />
175 </span>
176 <span class="nowrap inline-block">
177 <img class="inline-block valignmiddle" src="<?php echo DOL_URL_ROOT ?>/core/antispamimage.php" border="0" width="80" height="32" id="img_securitycode" />
178 <a class="inline-block valignmiddle" href="<?php echo $php_self; ?>" tabindex="4"><?php echo $captcha_refresh; ?></a>
179 </span>
180
181 </div></div>
182 <?php
183}
184
185if (!empty($morelogincontent)) {
186 if (is_array($morelogincontent)) {
187 foreach ($morelogincontent as $format => $option) {
188 if ($format == 'table') {
189 echo '<!-- Option by hook -->';
190 echo $option;
191 }
192 }
193 } else {
194 echo '<!-- Option by hook -->';
195 echo $morelogincontent;
196 }
197}
198?>
199
200</div>
201
202</div> <!-- end div login_right -->
203
204</div> <!-- end div login_line1 -->
205
206
207<div id="login_line2" style="clear: both">
208
209<!-- Button "Regenerate and Send password" -->
210<br><input type="submit" <?php echo $disabled; ?> class="button small" name="button_password" value="<?php echo $langs->trans('SendNewPassword'); ?>" tabindex="4" />
211
212<br>
213<div class="center" style="margin-top: 15px;">
214 <?php
215 $moreparam = '';
216 if (!empty($conf->dol_hide_topmenu)) {
217 $moreparam .= (strpos($moreparam, '?') === false ? '?' : '&').'dol_hide_topmenu='.$conf->dol_hide_topmenu;
218 }
219 if (!empty($conf->dol_hide_leftmenu)) {
220 $moreparam .= (strpos($moreparam, '?') === false ? '?' : '&').'dol_hide_leftmenu='.$conf->dol_hide_leftmenu;
221 }
222 if (!empty($conf->dol_no_mouse_hover)) {
223 $moreparam .= (strpos($moreparam, '?') === false ? '?' : '&').'dol_no_mouse_hover='.$conf->dol_no_mouse_hover;
224 }
225 if (!empty($conf->dol_use_jmobile)) {
226 $moreparam .= (strpos($moreparam, '?') === false ? '?' : '&').'dol_use_jmobile='.$conf->dol_use_jmobile;
227 }
228
229 print '<a class="alogin" href="'.$dol_url_root.'/index.php'.$moreparam.'">'.$langs->trans('BackToLoginPage').'</a>';
230 ?>
231</div>
232
233</div>
234
235</div>
236
237</form>
238
239
240<?php
241if ($mode == 'dolibarr' || !$disabled) {
242 if ($action != 'validatenewpassword' && empty($message)) {
243 print '<div class="center login_main_home divpasswordmessagedesc paddingtopbottom'.(!getDolGlobalString('MAIN_LOGIN_BACKGROUND') ? '' : ' backgroundsemitransparent boxshadow').'" style="max-width: 70%">';
244 print '<span class="passwordmessagedesc opacitymedium">';
245 print $langs->trans('SendNewPasswordDesc');
246 print '</span>';
247 print '</div>';
248 }
249} else {
250 print '<div class="center login_main_home divpasswordmessagedesc paddingtopbottom'.(!getDolGlobalString('MAIN_LOGIN_BACKGROUND') ? '' : ' backgroundsemitransparent boxshadow').'" style="max-width: 70%">';
251 print '<div class="warning center">';
252 print $langs->trans('AuthenticationDoesNotAllowSendNewPassword', $mode);
253 print '</div>';
254 print '</div>';
255}
256?>
257
258
259<br>
260
261<?php if (!empty($message)) { ?>
262 <div class="center login_main_message">
263 <?php dol_htmloutput_mesg($message, [], '', 1); ?>
264 </div>
265<?php } ?>
266
267
268<!-- Common footer is not used for passwordforgotten page, this is same than footer but inside passwordforgotten tpl -->
269
270<?php
271if (getDolGlobalString('MAIN_HTML_FOOTER')) {
272 print $conf->global->MAIN_HTML_FOOTER;
273}
274
275if (!empty($morelogincontent) && is_array($morelogincontent)) {
276 foreach ($morelogincontent as $format => $option) {
277 if ($format == 'js') {
278 echo "\n".'<!-- Javascript by hook -->';
279 echo $option."\n";
280 }
281 }
282} elseif (!empty($moreloginextracontent)) {
283 echo '<!-- Javascript by hook -->';
284 echo $moreloginextracontent;
285}
286
287// Google Analytics
288// TODO Remove this, and add content into hook getPasswordForgottenPageExtraOptions() instead
289if (isModEnabled('google') && getDolGlobalString('MAIN_GOOGLE_AN_ID')) {
290 $tmptagarray = explode(',', getDolGlobalString('MAIN_GOOGLE_AN_ID'));
291 foreach ($tmptagarray as $tmptag) {
292 print "\n";
293 print "<!-- JS CODE TO ENABLE for google analtics tag -->\n";
294 print "
295 <!-- Global site tag (gtag.js) - Google Analytics -->
296 <script async src=\"https://www.googletagmanager.com/gtag/js?id=".trim($tmptag)."\"></script>
297 <script>
298 window.dataLayer = window.dataLayer || [];
299 function gtag(){dataLayer.push(arguments);}
300 gtag('js', new Date());
301
302 gtag('config', '".trim($tmptag)."');
303 </script>";
304 print "\n";
305 }
306}
307
308// TODO Replace this with a hook
309// Google Adsense (need Google module)
310if (isModEnabled('google') && getDolGlobalString('MAIN_GOOGLE_AD_CLIENT') && getDolGlobalString('MAIN_GOOGLE_AD_SLOT')) {
311 if (empty($conf->dol_use_jmobile)) {
312 ?>
313 <div class="center"><br>
314 <script><!--
315 google_ad_client = "<?php echo $conf->global->MAIN_GOOGLE_AD_CLIENT ?>";
316 google_ad_slot = "<?php echo $conf->global->MAIN_GOOGLE_AD_SLOT ?>";
317 google_ad_width = <?php echo $conf->global->MAIN_GOOGLE_AD_WIDTH ?>;
318 google_ad_height = <?php echo $conf->global->MAIN_GOOGLE_AD_HEIGHT ?>;
319 //-->
320 </script>
321 <script src="//pagead2.googlesyndication.com/pagead/show_ads.js"></script>
322 </div>
323 <?php
324 }
325}
326?>
327
328
329</div>
330</div> <!-- end of center -->
331
332
333</body>
334</html>
335<!-- END PHP TEMPLATE -->
print $object position
Definition edit.php:195
API that allows to log in with an user account.
colorStringToArray($stringcolor, $colorifnotfound=array(88, 88, 88))
Convert a string RGB value ('FFFFFF', '255,255,255') into an array RGB array(255,255,...
getDolUserString($key, $default='', $tmpuser=null)
Return Dolibarr user constant string value.
dol_now($mode='auto')
Return date for now.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formatted messages to output (Used to show messages on html output).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Output html header of a page.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:137
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:140
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.