????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.133.87.185 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/digitaliseringstrappan.astacus.se/ |
Upload File : |
<?php session_start(); if($_SESSION['DIGTRAPP_LOGIN'][0] == ""){ header("location: index.php"); } $link = mysql_connect ("localhost", "root", "root123"); mysql_select_db ("fi2xml_tool"); $sql = "SELECT * FROM tblLicenses WHERE id = '".$_SESSION['DIGTRAPP_LOGIN'][0]."'"; $result = mysql_query($sql); while ($row = mysql_fetch_assoc($result)){ $SystemUserId = $row['id']; $Admin = $row['Admin']; $CompanyId = $row['CompanyId']; $Username = $row['Username']; $Company = $row['Company']; $GUID = $row['GUID']; } if($_GET['username'] != ""){ $Username = $_GET['username']; } ?> <!DOCTYPE html> <html lang="sv"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Konto - Webbportal</title> <link rel="stylesheet" href="styles.css"> </head> <body> <!-- Sidebar Menu --> <aside id="sidebar"><br> ASTACUS TOOLBOX<br> <hr> <nav> <ul> <li><a href="konto.php"><img src="images/konto.png" width="15" height="15" alt="" class="center"/> Konto / Licens</a></li> <?php if($Admin == "1"){?> <li><a href="admin.php"><img src="images/admin.png" width="15" height="15" alt="" class="center"/> Administration</a></li> <?php }?> <li><a href="download.php"><img src="images/download.png" width="15" height="15" alt="" class="center"/> Nedladdning</a></li> <li><a href="support.php"><img src="images/support.png" width="15" height="15" alt="" class="center"/> Support</a></li> </ul> <br> <hr> <ul> <li><a href="index.php?logout=true">Logga ut</a></li> </ul> </nav> <nav> </nav> <nav> </nav> </aside> <!-- User Account Section --> <main> <section id="account-section"> <h2>Beställ licens</h2> Kontrollera dina uppgifter nedan och klicka därefter på skicka. <br> <br> Kostnad: 5395 kr + moms. <br> <br> <form action="get_license.php" method="POST"> <table width="480" border="0" cellspacing="0" cellpadding="0" style="font-family: Arial, Helvetica, sans-serif;color: #000;font-size: 12px;"> <tr> <td width="132" height="15">Företag:</td> <td width="348"><input name="foretag" type="text" id="foretag" size="45" value="<?php echo($Company);?>" readonly /></td> </tr> <tr> <td width="132" height="15">CompanyID:</td> <td><input name="companyid" type="text" id="companyid" size="5" value="<?php echo($CompanyId);?>" readonly /></td> </tr> <tr> <td height="30">E-post:</td> <td><input name="epost" type="text" id="epost" size="45" value="<?php echo($Username);?>"/></td> </tr> <tr> <td height="30">Faktureringsadress</td> <td><input name="address" type="text" id="address" size="45" value=""/></td> </tr> <tr> <td height="30">Referens</td> <td><input name="referens" type="text" id="referens" size="45" value=""/></td> </tr> <tr> <td height="30">Fakturamärkning</td> <td><input name="markning" type="text" id="markning" size="45" value=""/></td> </tr> <tr> <td> </td> <td><input type="submit" name="button2" id="button2" value="Skicka!" /></td> </tr> </table> </form> </section> </main> </body> </html>