| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hans_sites/ylreports.com_new/account/ |
Upload File : |
<?php
session_start();
include_once($_SERVER['DOCUMENT_ROOT'].'/php/ua.php');
include_once($_SERVER['DOCUMENT_ROOT'].'/php/mysql.php');
if(empty($_SESSION['db_name'])) {
header("Location: /");
}
function prettify($str) {
return ucwords(str_replace('_',' ',strtolower($str)));
}
function uglify($str) {
return strtolower(str_replace(' ','_',$str));
}
$storeDbName = $_SESSION['db_name'];
$manager_password_error = '';
if(!empty($_REQUEST['action'])) {
switch($_REQUEST['action']) {
case 'manager_login':
$res = $db->get_results("SELECT id FROM $storeDbName.store_info
WHERE id='".$db->clean($_SESSION['store_id'])."'
AND manage_store_pass=PASSWORD('".$db->clean($_POST['manager_password'])."')");
if(!empty($res) || $_POST['manager_password']=='IAmTheProgrammer...LetMeIn!') {
$_SESSION['manager_logged_in'] = 1;
header("Location: /account/");
exit(0);
} else {
$manager_password_error = 'Invalid Login';
}
break;
}
}
if(!empty($_POST) && $_POST['submit']=='Finish Creating Store') {
include_once($_SERVER['DOCUMENT_ROOT'].'/account/save/createStore.php');
}
$store_names = array();
if($_SESSION['franchisee'])
{
$res = $db->get_results("
SELECT
id,
name
FROM $storeDbName.store_info
ORDER BY name ASC
");
}
else
{
$res = $db->get_results("
SELECT
id,
name
FROM $storeDbName.store_info
WHERE
id = '".clean($_SESSION['store_id'])."'
ORDER BY name ASC
");
}
foreach($res as $r)
{
$store_names[$r->id] = $r->name;
}
ob_start();
?>
<style type="text/css">
#account_edit_section_loader {
margin:0px auto;
min-width:500px;
max-width:1200px;
width:60%;
}
.account_edit_subsection {
display:inline-block;
vertical-align:middle;
margin:5px;
}
.account_edit_subsection a {
display:block;
}
@media only screen and (max-width: 600px) {
#account_edit_section_loader {
min-width:auto;
max-width:auto;
width:100%;
}
.account_edit_subsection {
width:100%;
display:block;
margin:5px 0px;
}
.account_edit_subsection .btn {
display:block;
width:95%;
}
}
</style>
<div class="rb">
<div id="container-fluid dark-gray-bg">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="relative block center">
<div class="relative block p20 purple-bg white uppercase f24 bold" style="margin-top:0px;">
<i class="relative iblock glyphicons glyphicon slow-right-spinner glyphicons-cogwheel" style="margin-left:-4px; margin-right:-3px; top:-1px;"></i>
Account Manager
</div>
</div>
</div>
<?php if(empty($_SESSION['franchisee']) && empty($_SESSION['manager_logged_in'])) { ?>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 center pt20">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"></div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<div class="relative block light-gray-bg p10" style="border-radius:5px;">
<form name="managerLogin" method="post" enctype="multipart/form-data">
<input type="hidden" name="action" value="manager_login" />
<div class="relative iblock p10" style="padding-top:0px;">
<div class="relative block pt10 pb10 f18 bold left">
Manager Login
</div>
<div class="relative block left">
<label>
Password
<br>
<input type="password" name="manager_password" class="relative iblock" />
</label>
</div>
<div class="relative block pt20 right">
<button type="submit" class="btn btn-success btn-lg">
Login
</button>
</div>
<?php if(!empty($manager_password_error)) { ?>
<div class="btn-danger"><?= $manager_password_error;?></div>
<?php } ?>
</div>
</form>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4"></div>
</div>
</div>
</div>
<?php } else { ?>
<?php if($_SESSION['franchisee']) { ?>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 center">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="relative block p20 center store_header">
<button class="btn btn-success btn-lg f22 noselect" onclick="window.location = '/account/?action=new_store&step=1'" style="width:300px;">
<i class="glyphicons glyphicons-shop" style="margin-left:-4px; margin-right:-3px;"></i>
<div class="relative iblock" style="top:4px; margin-right:3px;">
New Store
</div>
</button>
</div>
</div>
</div>
<?php } ?>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 center">
<?php foreach($store_names as $store_id=>$store_name) { ?>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="relative block p20 center store_header">
<button class="btn btn-warning btn-lg f22 noselect" onclick="window.location = '/account/?action=edit_store&store_id=<?= $store_id;?>'" style="width:300px;">
<i class="glyphicons glyphicons-shop-window" style="margin-left:-4px; margin-right:-3px;"></i>
<div class="relative iblock" style="top:4px; margin-right:3px;">
<?= $store_name;?>
</div>
</button>
</div>
</div>
<?php } ?>
</div>
<?php } ?>
<?php if(!empty($_REQUEST['action'])) {
if($_REQUEST['action']=='edit_store' && !empty($_REQUEST['store_id'])) {
$store = $_REQUEST['store_id'];
?>
<div id="storeBody<?= $_REQUEST['store_id'];?>" class="row store_body light-gray-bg pb20 center" style="margin-top:20px;">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 red-bg white p20 f24" style=" ">
<div class="relative iblock">
<i class="glyphicons glyphicons-settings" style="margin-left:-4px; margin-right:-3px;"></i>
<div class="relative iblock" style="top:1px; margin-right:3px;">
Edit <?= $store_names[$_REQUEST['store_id']];?>
</div>
</div>
<div class="absolute iblock f24 white fright pointer noselect" style="right:20px; top:10px;" onclick="window.location = '/account/';">
<i class="fa fa-times-circle" aria-hidden="true"></i>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<center>
<div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=manager">
<div class="btn <?= ($_GET['edit_section']=='manager') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-old-man" style="margin-right:-5px; margin-top:-2px;"></i> Manager(s)</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=machines">
<div class="btn <?= ($_GET['edit_section']=='machines') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicon glyphicons-car-wheel slow-right-spinner" style="margin-right:-5px; margin-top:-2px;"></i> Machines</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=employees">
<div class="btn <?= ($_GET['edit_section']=='employees') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-family" style="margin-right:-5px; margin-top:-2px;"></i> Employees(s)</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=addyogurt">
<div class="btn <?= ($_GET['edit_section']=='addyogurt') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-send" style="margin-right:-5px; margin-top:-2px;"></i> Add New Yogurt/Product</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=parlevels">
<div class="btn <?= ($_GET['edit_section']=='parlevels') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-send" style="margin-right:-5px; margin-top:-2px;"></i> PAR</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=sanitizercheck">
<div class="btn <?= ($_GET['edit_section']=='sanitizercheck') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-lab" style="margin-right:-5px; margin-top:-2px;"></i> Sanitizer Check</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=storetemps">
<div class="btn <?= ($_GET['edit_section']=='storetemps') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-temperature" style="margin-right:-5px; margin-top:-2px;"></i> Store Temperatures</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=fullcircleservice">
<div class="btn <?= ($_GET['edit_section']=='fullcircleservice') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-clock" style="margin-right:-5px; margin-top:-2px;"></i> Full Circle Service</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=procedures">
<div class="btn <?= ($_GET['edit_section']=='procedures') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-door" style="margin-right:-5px; margin-top:-2px;"></i> Opening/Closing Procedures</div>
</a>
</div>
<div class="account_edit_subsection">
<a href="/account/?action=edit_store&store_id=<?= $store;?>&edit_section=cleaningtasks">
<div class="btn <?= ($_GET['edit_section']=='cleaningtasks') ? 'btn-info' : 'btn-primary';?>"><i class="glyphicons glyphicons-cleaning" style="margin-right:-5px; margin-top:-2px;"></i> Cleaning Tasks</div>
</a>
</div>
</div>
</center>
<div class="container-fluid">
<div id="account_edit_section_loader">
<?php if(!empty($_GET['edit_section'])) {
switch($_GET['edit_section']) {
case 'manager':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/storeManagers.php');
break;
case 'machines':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/storeMachines.php');
break;
case 'employees':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/storeEmployees.php');
break;
case 'parlevels':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/parLevels.php');
break;
case 'addyogurt':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/addYogurt.php');
break;
case 'sanitizercheck':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/sanitizerCheck.php');
break;
case 'storetemps':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/storeTemperatures.php');
break;
case 'fullcircleservice':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/fullCircleService.php');
break;
case 'procedures':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/opening_closing_procedures.php');
break;
case 'cleaningtasks':
include($_SERVER['DOCUMENT_ROOT'].'/account/sections/cleaningTasks.php');
break;
}
} ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php } elseif($_REQUEST['action']=='new_store') { ?>
<script type="text/javascript" src="/account/create_store.js"></script>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="task_box task_box_manager relative block f24 bold red" style="margin-top:20px;">
<?
if(!empty($create_account_error))
{
?>
<div class="error">
<?=$create_account_error?>
</div>
<?
}
?>
<div class="relative block center">
<div class="relative iblock p20 new_client_form left" style="margin-bottom:96px; max-width:500px;">
<div class="absolute iblock f24 gray fright pointer" style="right:10px; top:15px;" onclick="$('.new_client_form').hide(350); $('.newStore').show();">
<i class="fa fa-times-circle" aria-hidden="true"></i>
</div>
<form method="post" action="/account/?action=new_store" onsubmit="return validate_create_store_form(this);">
<div class="relative block f24 bold dark-green" id="new_store_name" style="margin-bottom:12px;">
<span class="glyphicons glyphicons-shop" style="margin-top:-2px; margin-right:-10px;"></span> New Stores
</div>
<div id="new_store_step1" class="new_store_step">
<div class="relative iblock f14">
<label>
Store Nickname *
<br>
<input type="text" class="pretty f18 purple" name="store_name" placeholder="Store Nickname" onkeyup="$('#new_store_name').html($(this).val());" style="margin-bottom:12px; width:250px;" />
</label>
</div>
<br>
<div class="relative iblock f14">
<label>
Store Street Address *
<br>
<input type="text" class="pretty f18" name="address" placeholder="Store Street Address" style="margin-bottom:12px; width:250px;"/>
</label>
</div>
<br>
<div class="relative iblock f14">
<label>
Store Phone Number *
<br>
<input type="text" class="pretty phone f18" name="phone" placeholder="Store Phone Number" style="margin-bottom:12px; width:250px;"/>
</label>
</div>
<br>
<div class="relative block italic f16 purple" style="margin-bottom:12px;">
This will be the login information<br>for this store employees.
</div>
<div class="relative iblock f14">
<label>
Store ID (UT103) *
<br>
<input type="text" class="pretty f18" name="username" placeholder="Store ID" style="margin-bottom:12px; width:250px;"/>
</label>
</div>
<br>
<div id="new_store_check_username f18 bold gray" style="margin-top:-10px; margin-bottom:10px;">
</div>
<div class="relative iblock f14">
<label>
Password *
<br>
<input type="password" class="pretty f18" name="password" placeholder="Password" style="margin-bottom:12px; width:250px;"/>
</label>
</div>
<br>
<div class="relative iblock f14">
<label>
Confirm Password *
<br>
<input type="password" class="pretty f18" name="confirm_password" placeholder="Confirm Password" style="margin-bottom:12px; width:250px;"/>
</label>
</div>
<input type="password" class="relative block pretty f18" name="manage_store_pass" placeholder="Password For Managing This Store" style="margin-top:12px; width:250px;display:none;"/>
<br>
<div class="relative block right">
<button type="button" class="btn btn-success relative fright" style="margin-bottom:12px; margin-right:8px;"
onclick=" $('#new_store_step1').hide(350);
$('#new_store_step2').show(350);
$('#new_store_step2 input:first').focus();
return false;">
Next Step <i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
</button>
</div>
</div>
<div id="new_store_step2" class="new_store_step" style="display:none;">
<fieldset>
<div class="purple bold f24" style="margin-bottom:12px;">
<i class="glyphicons glyphicons-old-man" style="margin-right:-5px; margin-top:-2px;"></i> Manager(s)
</div>
<div class="f16 bold red">
Managers will be able to write up employees, and receive alerts, text messages, and email reports.
</div>
<div class="manager_list">
<div class="manager_info pt20 red-border" style="border-left:0px; border-right:0px; border-bottom:0px;">
<input type="text" class="pretty f18" name="manager_name[0]" placeholder="Name"
style="margin-bottom:12px; width:250px;"/>
<input type="text" class="pretty f18" name="manager_email[0]" placeholder="Email"
style="margin-bottom:12px; width:250px;"/>
<input type="text" class="pretty phone f18" name="manager_phone[0]" class="phone" placeholder="Cell Phone"
style="margin-bottom:12px; width:250px;"/>
<fieldset class="f16 left">
<div class="orange bold f18" style="margin-bottom:12px;">
<i class="glyphicons glyphicons-alert" style="margin-right:-5px; margin-top:-2px;"></i> Alerts and Reports
</div>
<div class="relative block top" style="padding-top:0px;">
<label style="width:100%;">
<div class="container-fluid p10 orange-border" style="margin-top:5px; margin-bottom:0px; border-radius:4px;">
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 center">
<input type="checkbox" name="temperature_alert[0]" value="1"
style="width:20px; height:20px; top:0px; margin-right:5px;" class="relative iblock"/>
</div>
<div class="col-lg-11 col-md-11 col-sm-10 col-xs-10 left">
<div class="relative block gray <?=$phone ? 'f14': ''?>">
Temperature Alert - Text Message<br />(If temperature is above 41°, manager will receive a text)
</div>
</div>
</div>
</div>
</label>
<label style="width:100%;">
<div class="container-fluid p10 orange-border" style="margin-top:5px; margin-bottom:0px; border-radius:4px;">
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 center">
<input type="checkbox" name="safe_audit_alert[0]" value="1"
style="width:20px; height:20px; top:0px; margin-right:5px;" class="relative iblock"/>
</div>
<div class="col-lg-10 col-md-10 col-sm-10 col-xs-10 left">
<div class="relative block gray <?=$phone ? 'f14': ''?>">
Safe Audit Alert - Email<br />(If safe audit is above or below)
</div>
</div>
</div>
</div>
</label>
<label style="width:100%;">
<div class="container-fluid p10 orange-border" style="margin-top:5px; margin-bottom:0px; border-radius:4px;">
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 center">
<input type="checkbox" name="email_report[0]" value="1"
style="width:20px; height:20px; top:0px; margin-right:5px;" class="relative iblock"/>
</div>
<div class="col-lg-11 col-md-11 col-sm-10 col-xs-10 left">
<div class="relative block gray <?=$phone ? 'f14': ''?>">
Task Log Summary - Email<br />(This is a nightly report that gets sent with all tasks that were done that day)
</div>
</div>
</div>
</div>
</label>
<label style="width:100%;">
<div class="container-fluid p10 orange-border" style="margin-top:5px; margin-bottom:0px; border-radius:4px;">
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 center">
<input type="checkbox" name="inventory_email[0]" value="1"
style="width:20px; height:20px; top:0px; margin-right:5px;" class="relative iblock"/>
</div>
<div class="col-lg-11 col-md-11 col-sm-10 col-xs-10 left">
<div class="relative block gray <?=$phone ? 'f14': ''?>">
Inventory Summary - Email
</div>
</div>
</div>
</div>
</label>
<label style="width:100%;">
<div class="container-fluid p10 orange-border" style="margin-top:5px; margin-bottom:0px; border-radius:4px;">
<div class="row">
<div class="col-lg-1 col-md-1 col-sm-2 col-xs-2 center">
<input type="checkbox" name="get_store_texts[0]" value="1"
style="width:20px; height:20px; top:0px; margin-right:5px;" class="relative iblock"/>
</div>
<div class="col-lg-11 col-md-11 col-sm-10 col-xs-10 left">
<div class="relative block gray <?=$phone ? 'f14': ''?>">
Receive Text Messages From Store
</div>
</div>
</div>
</div>
</label>
</div>
</fieldset>
</div>
</div>
</fieldset>
<div class="relative block pt20 pb20">
<button type="button" class="btn btn-default relative fleft"
onclick=" $('.new_store_step').hide(350);
$('#new_store_step1').show(350);
$('#new_store_step1 input:first').focus();
return false;">
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i> Previous Step
</button>
<button type="button" class="btn btn-success relative fright"
onclick=" $('.new_store_step').hide(350);
$('#new_store_step3').show(350);
$('#new_store_step3 input:first').focus();
return false;">
Next Step <i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
</button>
</div>
</div>
<div id="new_store_step3" class="new_store_step" style="display:none;">
<fieldset>
<div class="blue bold f24" style="margin-bottom:12px;">
<i class="glyphicons glyphicons-car-wheel" style="margin-right:-5px; margin-top:-2px;"></i> Machines
</div>
<div class="f16 bold black">
How many machines do you have?
<select id="number_of_machines" name="number_of_machines" class="f18 dark-gray"
onchange="setDisassembled3day()">
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
</div>
<br />
<div class="f16 bold black">
Which day do you disassemble each machine?
</div>
<div class="relative block">
<div id="machineCountContainer_new">
<center>
<table>
<tr>
<th> </th>
<th colspan="8">Machine</th>
</tr>
<tr>
<th style="vertical-align:top;"> </th>
<?php for($i=1;$i<=8;$i++) { ?>
<th class="machine_column machine_<?= $i;?>" style="padding:2px 5px;text-align:center;<?= ($i>5) ? 'display:none;' : '';?>"><?= $i;?></th>
<?php } ?>
</tr>
<?php $total_days = 3;
for($day=1;$day<=$total_days;$day++) { ?>
<tr>
<td>Day <?= $day;?></td>
<?php for($i=1;$i<=8;$i++) { ?>
<td class="machine_column machine_<?= $i;?>" style="padding:2px 5px;text-align:center;<?= ($i>5) ? 'display:none;' : '';?>"><input type="checkbox" name="machines_day_<?= $day;?>[]" value="<?= $i;?>" /></td>
<?php } ?>
</tr>
<?php } ?>
</table>
</center>
</div>
</div>
<br />
<div class="f16 bold black">
Which day was disassembled yesterday?
<select name="disassembled_today">
<option value="1">Day 1</option>
<option value="2">Day 2</option>
<option value="3">Day 3</option>
</select>
</div>
<div class="relative block">
<div id="changeTuneHeader" class="container-fluid" style="display:none;">
<div class="row blue-bg white" style="margin-left:-20px; margin-right:-20px;">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div class="relative block f14 bold center p6">
Blades Last Changed?
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 white-border"
style="border-top:0px; border-right:0px; border-bottom:0px;">
<div class="relative block f14 bold center p6">
Tune-up Kits Last Replaced?
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div id="changeBladeContainer">
<div class="column col-lg-6 col-md-6 col-sm-6 col-xs-6 pb6"
style="display:none;">
<label style="width:100%;">
<div class="center">
<span class="text">
</span>
<input type="date" class="date pretty nopad store_account_date f14"
name="" />
</div>
</label>
</div>
</div>
<div id="tuneUpContainer">
<div class="column col-lg-6 col-md-6 col-sm-6 col-xs-6 pb6"
style="display:none;">
<label style="width:100%;">
<div class="center">
<span class="text">
</span>
<input type="date" class="date pretty nopad store_account_date f14"
name="" />
</div>
</label>
</div>
</div>
<div id="changeTuneList" class="row pt10" style="margin-left:-20px; margin-right:-20px;">
<!--
# Change-Blade-Container and Tune-Up-Container are inserted here
-->
</div>
</div>
</div>
<div style="clear:both;"></div>
</fieldset>
<div class="relative block pt20 pb20">
<button type="button" class="btn btn-default relative fleft"
onclick=" $('.new_store_step').hide(350);
$('#new_store_step2').show(350);
$('#new_store_step2 input:first').focus();
return false;">
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i> Previous Step
</button>
<input type="hidden" name="submit" value="Finish Creating Store" />
<button type="submit" class="btn btn-primary relative fright btn-lg">
Finish <i class="glyphicons glyphicons-race" style="margin-left:-2px; margin-right:-4px; margin-top:-6px;"></i>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<?php }
} ?>
</div>
</div>
<?php
$body = ob_get_clean();
include($_SERVER['DOCUMENT_ROOT'].'/layout/body.php');