Git Codebase - Sn0wlink IT
Ticket Maker
Code:
Download ZIP
🗀 Tickets
🗀 admin
CODE_OF_CONDUCT.md
LICENSE
README.md
admin-screenshot.png
config.php
index.php
layout.php
style.php
success.php
text.php
ticket-layout.php
ticketmaker-screenshot.png
layout.php
<?php include 'config.php'; ?> <html> <head> <title><?php echo $sitename; ?></title> <link rel="stylesheet" type="text/css" href="style.php" /> </head> <body> <div class='header'> <center> <h1><?php echo $sitename; ?></h1> </center> </div> <div class='form'> <form action="index.php" method="post"> <input class='box' type="text" name="username" placeholder= "* Name" value=""/><br /><br /> <input class='box' type="text" name="email" placeholder="* Email" value="" /><br /><br /> <input class='box' type="text" name="summary" placeholder="* Summary" value="" /><br /><br /> Problem:<br /> <textarea rows='10' name="problem" value="Problem"></textarea><br /><br /> <input class='submit' type="submit" name="submit" value="Send" /> </form> </div> </body> </html>