Файловый менеджер - Редактировать - /var/www/zerocorporation/PrismsCRM.php
Назад
<?php include("App_Core/Core.php"); if(isset($_POST['SubmitRequest'])){ $_SESSION['Firstname'] = ucfirst($_POST['Firstname']); $_SESSION['Lastname'] = ucfirst($_POST['Lastname']); $_SESSION['Company'] = ucfirst($_POST['Company']); $_SESSION['Phone'] = $_POST['Phone']; $_SESSION['Email'] = ucfirst($_POST['Email']); //Validate if($_POST['name'] != ""){ $error[6] = '1'; } if($_SESSION['Firstname'] == ""){ $error[1] = '1'; } if($_SESSION['Lastname'] == ""){ $error[2] = '1'; } if($_SESSION['Company'] == ""){ $error[3] = '1'; } if($_SESSION['Phone'] == ""){ $error[4] = '1'; } if(validate_email($_SESSION['Email']) == "NOTVALID"){ $error[5] = '1'; } if(!isset($error)) { $Subject = 'New Demo Request'; $Message = "<head> <title>Zero Corporation | New Demo Request.</title> </head> <body> <table width='650' align='center' style='border: solid 1px #cccccc; margin: 0 auto; padding: 20px 30px 20px 30px; font-family: Calibri; font-size: 95%'> <tr> <td width='420'><div style='height: 25px; font-weight: bold; font-size: 1.3em;'><img src='http://www.zerocorporation.com/images/LogoTransparent2.png' alt='Zero Corporation' name='logo' width='218' align='left'></div></td> <td width='218' align='right' style='color:#ff9933; font-family:Calibri; font-style:italic;'>Date: ".date("d/M/Y")."</td> </tr> <tr> <td colspan='2'> <div style='margin-top: 30px; padding-bottom: 25px;'> <p>We have a new demo request for <strong>".$_POST['Product']."</strong></p> <p> Firstname: <strong>".$_SESSION['Firstname']."</strong><br> Lastname: <strong>".$_SESSION['Lastname']."</strong><br> Email: <strong>".$_SESSION['Email']."</strong><br> Phone: <strong>".$_SESSION['Phone']."</strong><br> Company: <strong>".$_SESSION['Company']."</strong><br> </p> <p>Kind Regards,<br> ZeroCorporation Website</p> </div> </td> </tr> <tr> <td colspan='2' align='right'>© ".date('Y')." | ZeroCorporation.com.au </td> </tr> </table> </body> </html>"; if(EmailWebsite(Setting('Email'), $Subject, $Message)) { $Status = "True"; unset($_SESSION['Firstname']); unset($_SESSION['Lastname']); unset($_SESSION['Company']); unset($_SESSION['Phone']); unset($_SESSION['Email']); }else{ $Status = "False"; } }else{ $StatusMessage = "Please fill out all feilds"; } } ?> <!doctype html> <!--[if IEMobile 7 ]> <html class="no-js iem7" lang="en"> <![endif]--> <!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js" lang="en"> <!--<![endif]--> <head> <meta charset="utf-8"> <title><?php echo Setting('WebsiteTitle');?> | PrismsCRM</title> <meta name="description" content="PrismsCRM is a combination of Pharmaceutical Sales & Marketing expertise and Technological advancement that provides the end users an infinite opportunities of Exploring, Maintaining and Growing their market and acts as a Sales Force Effectiveness (SFE) tool for organizations."> <!-- The script prevents links from opening in mobile safari. https://gist.github.com/1042026 --> <!-- <script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script> --> <!-- Main Stylesheet --> <link rel="stylesheet" href="App_Theme/css/superfish.css" media="screen" /> <link rel="stylesheet" href="App_Theme/style.css"> <link rel="stylesheet" href="App_Theme/css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" /> <link rel="stylesheet" href="App_Theme/css/custom-rebuild.css" media="screen" /> <link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'> <style type="text/css"> body { background-image: url(App_Theme/images/bg/PrismsCRM.jpg); background-repeat: no-repeat; } </style> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script> <script type="text/javascript" src="App_Theme/js/Demo.js"></script> <?php echo Setting('Analytics');?> </head> <body> <div id="boxes"> <div id="dialog" class="window"> <form id="Request" name="Request" method="POST" action=""> <div class="WindowHeader"><b>Request a PrismsCRM demo</b></div> <div id="GetMessage"></div> <div class="WindowRow"> <div class="WindowRowText">Firstname:</div> <input type="text" name="Firstname" id="Firstname" class="WindowRowTextBox" value="<?php echo $_SESSION['Firstname'];?>" <?php if(isset($error) && $error[1] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Lastname:</div> <input type="text" name="Lastname" id="Lastname" class="WindowRowTextBox" value="<?php echo $_SESSION['Lastname'];?>" <?php if(isset($error) && $error[2] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Email:</div> <input type="text" name="Email" id="Email" class="WindowRowTextBox" value="<?php echo $_SESSION['Email'];?>" <?php if(isset($error) && $error[5] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Phone:</div> <input type="text" name="Phone" id="Phone" class="WindowRowTextBox" value="<?php echo $_SESSION['Phone'];?>" <?php if(isset($error) && $error[4] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Company:</div> <input type="text" name="Company" id="Company" class="WindowRowTextBox" value="<?php echo $_SESSION['Company'];?>" <?php if(isset($error) && $error[3] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div style="display:none"> <input type="text" name="name" id="name" value="">/> </div> <div class="WindowRow"> <div class="WindowRowText"> <input type="hidden" name="Product" value="PrismsCRM"/> </div> <input type="submit" name="SubmitRequest" class="WindowRowSubmitButton" value="Submit Request"/> </div> </form> </div> <div id="mask"></div> </div> <div id="container"> <?php include("App_Includes/Header.php");?> <?php include("App_Includes/Menu.php");?> <section id="content-container"> <section class="content_container_fix"> <div class="HomeVideoBackground"> <div class="HomeVideoHolder"> <iframe src="//player.vimeo.com/video/78311726?portrait=0&byline=0&title=0&badge=0" width="100%" height="100%" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> </div> </div> <section class="full_width"> <?php if($Status == 'True'){ echo'<div class="message-box green">We have received your request, a sales member will be intouch shortly.</div>'; } if($Status == 'False'){ echo'<div class="message-box red">Woops... something went wrong, please try again.</div>'; } if(isset($StatusMessage)){ echo'<div class="message-box yellow">'.$StatusMessage.'</div>'; } ?> <section class="three_fourth content-left"> <img src="App_Theme/images/PrismsCRM_iMac.png" alt="" style="float:left; margin-top:-20px; margin-right:20px;"> <h2>PrismsCRM Overview</h2> <p> <b><i>PrismsCRM</i></b> has been developed from our own first-hand, deep experience and knowledge within the Pharmaceutical and related Healthcare industries. It is designed to allow for a combination of our client's own Sales & Marketing expertise and Technological advancement that provides users with opportunities of exploring, recognising and maintaining what works and growing their market and acts as a front-line Sales Force Effectiveness (SFE) tool for organisations of all sizes. </p> <p><b><i>PrismsCRM</i></b> is a world-leading Pharma centric CRM solution built primarily to address the needs of Pharmaceutical and related companies in managing their field force effectively whilst being able to source and utilise information gained for wider strategic marketing purposes. From the field force perspective it gives a 360° view of individual territory and customers around whom all activities and interactions take place and are accounted for and from the Management perspective it gives a multi-dimensional view of the geographies , customers, activities , Sales vs Efforts and the ROI per call. </p> <p>In <b><i>PrismsCRM</i></b>, every individual has a defined “role” within whatever hierarchy exists for your organisation and the system helps “bridge the gap” between Marketing, Product, Medical and Sales teams with the underpinning aims of driving efficiencies and effectiveness.</p> <p> </p> <h2>Features</h2> <hr> <table width="690" border="0" cellpadding="10" cellspacing="10" class="invisible_table"> <tr> <td><h4> Simplicity</h4></td> <td><h4>Customer Classification </h4></td> </tr> <tr> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/Simple.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> <b><i>PrismsCRM</i></b> is user friendly and self intuitive and designed for ease of use by people without depth of experience in such interfaces. </div></td> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/CustomerClassification.png" width="64" height="64" alt="" style="float:left; margin-right:15px; margin-bottom:15px;">Customers can be classified in many ways including by product support and potential, overall support, business value, client type and frequency of visit, as examples. </div></td> </tr> <tr> <td width="340"><h4>Customers </h4></td> <td width="340"><h4>Distributor & Wholesaler Management </h4></td> </tr> <tr> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img src="App_Theme/icons/Customer.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"><b><i>PrismsCRM</i></b> offers 360° View of Customer. Complete Customer Details, Customer Prescribing or Purchasing patterns and Preferences. <b><i>PrismsCRM</i></b> also helps in Identifying the right customer for the right product, planning interactions, resource allocation and the like.</div></td> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/Distributor.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> Manage not only your customers but also your distributor or wholesaler networks. <b><i>PrismsCRM</i></b> can be directly integrated with an existing portal to book orders and your distributor or wholesaler gets an immediate alert for invoicing along with dispatch details.</div></td> </tr> <tr> <td><h4>Real Time Access</h4></td> <td><h4>Territory Management</h4></td> </tr> <tr> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/RealtimeAccess.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> <b><i>PrismsCRM</i></b> Web offers real-time access to customer data for analytics, personalised dashboard for all users and extensive reporting capabilities. <b><i>PrismsCRM</i></b> Mobile and <b><i>PrismsCRM</i></b> Spectra can be synchronised at any point of time to get real time data from your server. </div></td> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/Territory.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> <b><i>PrismsCRM</i></b> flexibility allows you to assign and re-assign sales territories when required, without fuss. Similarly, new territories can be created from any existing geography and two territories can be merged to form a single territory. </div></td> </tr> <tr> <td><h4>KOL Management</h4></td> <td><h4> Workflows and Approval Management </h4></td> </tr> <tr> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/KOL.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> KOL Management in today's Healthcare environments calls for an entirely different approach compared to others in your client base. <b><i>PrismsCRM</i></b> KOL Module helps ensure your relationships with KOL customers is planned and managed towards the specific objectives you seek. </div></td> <td><div style="padding-right:15px; margin-bottom:30px; margin-top:10px; font-size:15px;"> <img name="" src="App_Theme/icons/Workflows.png" width="64" height="64" alt="" style="float:left; margin-right:15px;"> In <b><i>PrismsCRM</i></b>, Workflows can be set up and executed by the users. With automated approval management, all changes requested by the field force can be sent for hierarchical approval. Workflows allow for progressive, step by step approval processes towards campaign execution. </div></td> </tr> </table> </section> <section class="one_fourth last"> <section class="widget"> <h3>Related Products</h3> <ul class="menu"> <li><a href="/PrismsCRM_iOS">PrismsCRM iOS</a></li> <li><a href="/PrismsCRM_Android">PrismsCRM Android</a></li> <li><a href="/Spectra">PrismsCRM Spectra</a></li> <li><a href="/PrismsCRM_Web">PrismsCRM Web</a></li> <li><a href="/PrismsCRM_Screenshots">PrismsCRM Screenshots</a></li> </ul> </section> <!-- /.widget --> <section class="widget"> <div class="fb-share"> <a href="#dialog" onClick="openwindow();" name="modal"><img src="App_Theme/images/Demo.png" alt="" width="85" height="25"></a><br> request a demo here </div> </section> <!-- /.widget --> <!-- /.widget --> <?php include("App_Includes/ContactPanel.php");?> <!-- /.widget --> </section> <!-- /.one_fourth --> </section> <!-- /.full_width --> <section class="clear_full"></section> </section> <!-- /.content_container_fix --> </section> <!-- /#content-container --> <?php include("App_Includes/Footer.php");?> <!-- /footer --> </div> <!-- /#container --> <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</script> <script type="text/javascript"> /*------------------------------- * jQuery Plugin: Super Fish Menu -------------------------------*/ jQuery(document).ready(function($){ $("ul.main-menu").supersubs({ minWidth: 12, // minimum width of sub-menus in em units maxWidth: 150, // maximum width of sub-menus in em units extraWidth: 1 // extra width can ensure lines don't sometimes turn over // due to slight rounding differences and font-family }).superfish({ delay: 300, // one second delay on mouseout animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation speed: 'normal', // faster animation speed autoArrows: false, // disable generation of arrow mark-up dropShadows: true // disable drop shadows }); // call supersubs first, then superfish, so that subs are // not display:none when measuring. Call before initialising // containing tabs for same reason. }); </script> <script src="App_Theme/js/libs/ui/jquery.ui.core.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.widget.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.accordion.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.tabs.js"></script> <script src="App_Theme/js/libs/superfish/hoverIntent.js"></script> <script src="App_Theme/js/libs/superfish/superfish.js"></script> <script src="App_Theme/js/libs/superfish/supersubs.js"></script> <script src="App_Theme/js/libs/jquery.flexslider-min.js"></script> <script type="text/javascript" src="App_Theme/js/libs/jquery.easing.1.3.js"></script> <script src="App_Theme/js/libs/slides.min.jquery.js"></script> <script src="App_Theme/js/libs/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script> <script src="App_Theme/js/scripts.js"></script> <!-- scripts concatenated and minified via ant build script--> <script src="App_Theme/js/helper.js"></script> <!-- end scripts--> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.0.33-0ubuntu0.16.04.16 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка