One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
htdocs
/
edgpens
/
View File Name :
testinput.php
<!DOCTYPE html> <!--[if IE 9]> <html class="no-js lt-ie10"> <![endif]--> <!--[if gt IE 9]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <title><?php echo $template['title'] ?></title> <meta name="description" content="<?php echo $template['description'] ?>"> <meta name="author" content="<?php echo $template['author'] ?>"> <meta name="robots" content="<?php echo $template['robots'] ?>"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0"> <!-- Icons --> <!-- The following icons can be replaced with your own, they are used by desktop and mobile browsers --> <link rel="shortcut icon" href="img/favicon.png"> <link rel="apple-touch-icon" href="img/icon57.png" sizes="57x57"> <link rel="apple-touch-icon" href="img/icon72.png" sizes="72x72"> <link rel="apple-touch-icon" href="img/icon76.png" sizes="76x76"> <link rel="apple-touch-icon" href="img/icon114.png" sizes="114x114"> <link rel="apple-touch-icon" href="img/icon120.png" sizes="120x120"> <link rel="apple-touch-icon" href="img/icon144.png" sizes="144x144"> <link rel="apple-touch-icon" href="img/icon152.png" sizes="152x152"> <link rel="apple-touch-icon" href="img/icon180.png" sizes="180x180"> <!-- END Icons --> <!-- Stylesheets --> <!-- Bootstrap is included in its original form, unaltered --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Related styles of various icon packs and plugins --> <link rel="stylesheet" href="css/plugins.css"> <!-- The main stylesheet of this template. All Bootstrap overwrites are defined in here --> <link rel="stylesheet" href="css/main.css"> <!-- Include a specific file here from css/themes/ folder to alter the default theme of the template --> <?php if ($template['theme']) { ?><link rel="stylesheet" href="css/themes/<?php echo $template['theme']; ?>.css" id="theme-link"><?php } ?> <!-- The themes stylesheet of this template (for using specific theme color in individual elements - must included last) --> <link rel="stylesheet" href="css/themes.css"> <!-- END Stylesheets --> <link rel="stylesheet" href="js/bootstrap-tagsinput/bootstrap-tagsinput.css"> <!-- My Own Custom Sheet --> <link rel="stylesheet" href="custom.css"> <!-- Modernizr (browser feature detection library) --> <!-- <script src="js/vendor/modernizr-2.8.3.min.js"></script> --> </head> <body> <!-- Include Jquery library from Google's CDN but if something goes wrong get Jquery from local file (Remove 'http:' if you have SSL) --> <!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --> <script>!window.jQuery && document.write(decodeURI('%3Cscript src="js/vendor/jquery-2.1.1.min.js"%3E%3C/script%3E'));</script> <!-- <script type="text/javascript" src="http://xoxco.com//examples/jquery.min.js"></script> --> <!-- Bootstrap.js, Jquery plugins and Custom JS code --> <script src="js/vendor/bootstrap.min.js"></script> <script src="js/plugins.js"></script> <!-- <script src="js/jquery.tagsinput.js"></script> --> <!-- <script src="js/bootstrap-tagsinput/bootstrap-tagsinput-angular.js"></script> --> <!-- <script src="js/app.js"></script> --> <!-- <script src="extension/jquery-confirm-v3.3.4/js/jquery-confirm.js"></script> --> <!-- <link rel="stylesheet" href="extension/jquery-confirm-v3.3.4/css/jquery-confirm.css"> --> <!-- <link rel="stylesheet" type="text/css" href="http://xoxco.com/examples/jquery.tagsinput.css" /> --> <!-- <script type="text/javascript" src="http://xoxco.com//examples/jquery.tagsinput.js"></script> --> <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js'></script> <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/start/jquery-ui.css" /> <input class="asd" type="text" value="Amsterdam,Washingtxon" data-role="tagsinput" > <p><label>Defaults:</label> <input id="tags_1" type="text" class="tags" value="foo,bar,baz,roffle" /></p> <p><label>Technologies: (Programming languages in yellow)</label> <input id="tags_2" type="text" class="tags" value="php,ios,javascript,ruby,android,kindle" /></p> <p><label>Autocomplete:</label> <input id='tags_3' type='text' class='tags'></p> <script type="text/javascript"> function onAddTag(tag) { alert("Added a tag: " + tag); } function onRemoveTag(tag) { alert("Removed a tag: " + tag); } function onChangeTag(input,tag) { alert("Changed a tag: " + tag); } $(function() { var states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming' ]; $.curCSS = function (element, attrib, val) { $(element).css(attrib, val); }; $('#tags_1').tagsInput({width:'auto'}); $('#tags_2').tagsInput({ width: 'auto', onChange: function(elem, elem_tags) { var languages = ['php','ruby','javascript']; $('.tag', elem_tags).each(function() { if($(this).text().search(new RegExp('\\b(' + languages.join('|') + ')\\b')) >= 0) $(this).css('background-color', 'yellow'); }); } }); $('#tags_3').tagsInput({ width: 'auto', //autocomplete_url:'test/fake_plaintext_endpoint.html' //jquery.autocomplete (not jquery ui) autocomplete_url:states // jquery ui autocomplete requires a json endpoint }); // Uncomment this line to see the callback functions in action // $('input.tags').tagsInput({onAddTag:onAddTag,onRemoveTag:onRemoveTag,onChange: onChangeTag}); // Uncomment this line to see an input with no interface for adding new tags. // $('input.tags').tagsInput({interactive:false}); }); </script> <script src="js/pages/formsValidation.js"></script> </div> <!-- End Started Block --> </body>