forked from gburton/CE-Phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssl_check.php
46 lines (34 loc) · 1.1 KB
/
ssl_check.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2018 osCommerce
Released under the GNU General Public License
*/
require('includes/application_top.php');
require('includes/languages/' . $language . '/ssl_check.php');
$breadcrumb->add(NAVBAR_TITLE, tep_href_link('ssl_check.php'));
require('includes/template_top.php');
?>
<h1 class="display-4"><?php echo HEADING_TITLE; ?></h1>
<div class="contentContainer">
<div class="card mb-2">
<div class="card-header"><?php echo BOX_INFORMATION_HEADING; ?></div>
<div class="card-body">
<?php echo BOX_INFORMATION; ?>
</div>
</div>
<div class="card mb-2 text-white bg-danger">
<div class="card-body">
<?php echo TEXT_INFORMATION; ?>
</div>
</div>
<div class="buttonSet">
<div class="text-right"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'fas fa-angle-right', tep_href_link('login.php'), null, null, 'btn-light btn-block btn-lg'); ?></div>
</div>
</div>
<?php
require('includes/template_bottom.php');
require('includes/application_bottom.php');
?>