footer.php
4 years ago
form-navigator.php
4 years ago
income-stats.php
4 years ago
introduction.php
4 years ago
progress-bar.php
4 years ago
footer.php
22 lines
| 1 | <div class="form-footer"> |
| 2 | <div class="navigator-tracker"> |
| 3 | <button class="step-tracker current" data-step="0"></button> |
| 4 | <button class="step-tracker" data-step="1"></button> |
| 5 | <button class="step-tracker" data-step="2"></button> |
| 6 | </div> |
| 7 | <div class="secure-notice"> |
| 8 | <?php |
| 9 | if (is_ssl()) : ?> |
| 10 | <i class="fas fa-lock"></i> |
| 11 | <?php |
| 12 | _e('Secure Donation', 'give'); ?> |
| 13 | <?php |
| 14 | else : ?> |
| 15 | <i class="fas fa-exclamation-triangle"></i> |
| 16 | <?php |
| 17 | _e('Insecure Donation', 'give'); ?> |
| 18 | <?php |
| 19 | endif; ?> |
| 20 | </div> |
| 21 | </div> |
| 22 |