| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/pranata/application/install/ |
Upload File : |
<?php
// *************************************************************************
// * *
// * iBilling - Accounting, Billing Software *
// * Copyright (c) Sadia Sharmin. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: sadiasharmin3139@gmail.com *
// * Website: http://www.sadiasharmin.com *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * If you Purchased from Codecanyon, Please read the full License from *
// * here- http://codecanyon.net/licenses/standard *
// * *
// *************************************************************************
require ('application_installer_config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php echo $app_name; ?> Installer</title>
<link rel="shortcut icon" type="image/x-icon" href="../storage/icon/favicon.ico">
<link href="../../ui/theme/lrsys/css/bootstrap.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/lib/fa/css/font-awesome.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/lib/icheck/skins/all.css" rel="stylesheet">
<link href="../../ui/lib/css/animate.css" rel="stylesheet">
<link href="../../ui/lib/toggle/bootstrap-toggle.min.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/style.css?ver=2.0.1" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/component.css?ver=2.0.1" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/custom.css" rel="stylesheet">
<link href="../../ui/lib/icons/css/ibilling_icons.css" rel="stylesheet">
<link href="../../ui/theme/lrsys/css/material.css" rel="stylesheet">
<link type='text/css' href='style.css' rel='stylesheet'/>
</head>
<body style='background-color: #FBFBFB;'>
<div id='main-container'>
<div class='header'>
<div class="header-box wrapper">
<div class="hd-logo"><a href="#"><img src="../storage/system/logo.png" alt="Logo"/></a></div>
</div>
</div>
<!-- contents area start -->
<div class="col-md-12">
<hr>
<h3>Setup Your Profile</h3>
<hr>
<form class="form-horizontal" role="form" id="ib_form">
<div class="form-group">
<label class="control-label col-sm-3" for="fullname">Your Full Name:</label>
<div class="col-sm-9">
<input type="email" class="form-control" name="fullname" id="fullname" placeholder="Enter Full Name" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="email">Email:</label>
<div class="col-sm-9">
<input type="email" class="form-control" name="email" id="email" placeholder="Enter email" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="password">Choose Password:</label>
<div class="col-sm-9">
<input type="password" class="form-control" id="password" name="password" placeholder="Enter password" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="confirm_password">Confirm Password:</label>
<div class="col-sm-9">
<input type="password" class="form-control" id="confirm_password" name="confirm_password" placeholder="Re Enter password" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<button type="submit" id="ib_submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
</div>
<script src="../../ui/theme/lrsys/js/jquery-1.10.2.js"></script>
<script src="../../ui/theme/lrsys/js/bootstrap.min.js"></script>
<script src="../../ui/lib/blockui.js"></script>
<script src="../../ui/theme/lrsys/lib/bootbox.min.js"></script>
<script type="text/javascript">
var block_msg = '<div class="md-preloader"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="32" width="32" viewbox="0 0 75 75"><circle cx="37.5" cy="37.5" r="33.5" stroke-width="6"/></svg></div>';
var ib_submit = $("#ib_submit");
var ib_box = $("#main-container");
ib_submit.on('click', function(e) {
e.preventDefault();
ib_box.block({message: block_msg});
$.post("post_profile.php", $('#ib_form').serialize())
.done(function( data ) {
if ($.isNumeric(data)) {
window.location = '../../index.php';
}
else{
ib_box.unblock();
bootbox.alert(data);
}
});
});
</script>
</body>
</html>