-
-
Notifications
You must be signed in to change notification settings - Fork 616
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing cache pre-fix issues when using redis cluster
- Loading branch information
1 parent
e404402
commit beccd6c
Showing
13 changed files
with
153 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +0,0 @@ | ||
<?php | ||
foreach ($__data as $var => $val) { | ||
$$var = $val; // necessary for blade refactor | ||
} | ||
$user = $tpl->get('user'); | ||
?> | ||
<div class="projectSteps"> | ||
<div class="progressWrapper"> | ||
<div class="progress"> | ||
<div | ||
id="progressChecklistBar" | ||
class="progress-bar progress-bar-success tx-transition" | ||
role="progressbar" | ||
aria-valuenow="0" | ||
aria-valuemin="0" | ||
aria-valuemax="100" | ||
style="width: 12%" | ||
><span class="sr-only">12%</span></div> | ||
</div> | ||
|
||
|
||
<div class="step current" style="left: 12%;"> | ||
<a href="javascript:void(0)" data-toggle="dropdown" class="dropdown-toggle"> | ||
<span class="innerCircle"></span> | ||
<span class="title"> | ||
<i class="fa-regular fa-circle"></i> | ||
Step 1 | ||
</span> | ||
</a> | ||
</div> | ||
|
||
<div class="step " style="left: 37%;"> | ||
<a href="javascript:void(0)" data-toggle="dropdown" class="dropdown-toggle"> | ||
<span class="innerCircle"></span> | ||
<span class="title"> | ||
<i class="fa-regular fa-circle"></i> | ||
Step 2 | ||
</span> | ||
</a> | ||
</div> | ||
|
||
<div class="step " style="left: 62%;"> | ||
<a href="javascript:void(0)" data-toggle="dropdown" class="dropdown-toggle"> | ||
<span class="innerCircle"></span> | ||
<span class="title"> | ||
<i class="fa-regular fa-circle"></i> | ||
Step 3 | ||
</span> | ||
</a> | ||
</div> | ||
|
||
<div class="step " style="left: 88%;"> | ||
<a href="javascript:void(0)" data-toggle="dropdown" class="dropdown-toggle"> | ||
<span class="innerCircle"></span> | ||
<span class="title"> | ||
<i class="fa-regular fa-circle"></i> | ||
Step 4 | ||
</span> | ||
</a> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<br /><br /><br /> | ||
|
||
|
||
<h2><?php echo $tpl->language->__('headlines.set_up_your_account'); ?></h2> | ||
|
||
<?php $tpl->dispatchTplEvent('afterPageHeaderClose'); ?> | ||
<div class="regcontent"> | ||
<?php $tpl->dispatchTplEvent('afterRegcontentOpen'); ?> | ||
|
||
<form id="resetPassword" action="" method="post"> | ||
<?php $tpl->dispatchTplEvent('afterFormOpen'); ?> | ||
|
||
<?php echo $tpl->displayInlineNotification(); ?> | ||
|
||
<input type="hidden" name="step" value="1"/> | ||
|
||
<div class=""> | ||
<input type="text" name="firstname" style="margin-bottom:15px" id="firstname" placeholder="<?php echo $tpl->language->__('input.placeholders.firstname'); ?>" value="<?= $tpl->escape($user['firstname']); ?>" /> | ||
|
||
</div> | ||
<div class=""> | ||
<input type="text" name="lastname" id="lastname" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__('input.placeholders.lastname'); ?>" value="<?= $tpl->escape($user['lastname']); ?>" /> | ||
</div> | ||
<div class=""> | ||
<input type="text" name="jobTitle" id="jobTitle" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__('input.placeholders.jobtitle'); ?>" value="<?= $tpl->escape($user['jobTitle']); ?>" /> | ||
</div> | ||
<div class=""> | ||
<input type="password" name="password" id="password" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__('input.placeholders.enter_new_password'); ?>" /> | ||
<span id="pwStrength" style="width:100%;"></span> | ||
</div> | ||
<div class=" "> | ||
<input type="password" name="password2" id="password2" style="margin-bottom:15px" placeholder="<?php echo $tpl->language->__('input.placeholders.confirm_password'); ?>" /> | ||
</div> | ||
<small><?= $tpl->__('label.passwordRequirements') ?></small><br /><br /> | ||
<div class=""> | ||
<input type="hidden" name="saveAccount" value="1" /> | ||
<?php $tpl->dispatchTplEvent('beforeSubmitButton'); ?> | ||
<input type="submit" name="createAccount" value="<?php echo $tpl->language->__('buttons.next'); ?>" /> | ||
|
||
</div> | ||
<?php $tpl->dispatchTplEvent('beforeFormClose'); ?> | ||
</form> | ||
<?php $tpl->dispatchTplEvent('beforeRegcontentClose'); ?> | ||
</div> | ||
|
||
<script> | ||
leantime.usersController.checkPWStrength('password'); | ||
</script> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.