35 lines
584 B
PHP
35 lines
584 B
PHP
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Y2T</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="root">
|
|
|
|
<h4>Welcome on the handler page</h4>
|
|
|
|
<?php
|
|
echo "entering php\n";
|
|
$url = $_POST['url'];
|
|
echo $url ."\n";
|
|
$lang = $_POST['lang'];
|
|
echo $lang;
|
|
echo "\n";
|
|
|
|
$output = exec("python3 y2t.py");
|
|
echo $output;
|
|
sleep(5);
|
|
echo "check"
|
|
?>
|
|
|
|
|
|
</div>
|
|
<script src="assets/js/vue.min.js"></script>
|
|
<script src="assets/js/app.js"></script>
|
|
|
|
</body>
|
|
</html>
|