2023-12-03 17:14:28 +01:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "description" content = "XPathTrainer." >
< meta name = "robots" content = "noindex" >
<!-- <link rel="stylesheet" href="CSS/vcarousel.css" media="screen"> -->
< script src = "JS/xpathTrainer.app.js" defer > < / script >
< title > XPath Trainer< / title >
< / head >
< body >
< header > < h1 > XPath Trainer< / h1 > < / header >
< main >
< form id = "trainerForm" with = "90%" >
< fieldset >
< label for = "myFile" > Sélectionnez votre fichier XML : < / label > < input type = "file" id = "myFile" name = "myFile" accept = ".xml" > < br >
2023-12-09 09:50:12 +01:00
< label > XPath à tester : < / label > < input type = "text" id = "myXPath" name = "myXPath" size = "150px" > < input type = "submit" id = "runTest" name = "runTest" value = "Lancez le test" > < br >
2023-12-03 17:14:28 +01:00
< / fieldset >
2023-12-09 09:50:12 +01:00
< iframe id = "display" src = "" style = "width:65%;float:left; margin:2em;" height = "800px" > < / iframe >
< div id = "result" style = "width:30%: float::right" > < / div >
2023-12-03 17:14:28 +01:00
< / form >
< / main >
< / body >
< / html >