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" >
2023-12-10 11:07:16 +01:00
< link rel = "stylesheet" href = "CSS/style.css" media = "screen" >
2023-12-03 17:14:28 +01:00
< script src = "JS/xpathTrainer.app.js" defer > < / script >
2023-12-10 11:07:16 +01:00
< link rel = "icon" type = "image/x-icon" href = "images/favicon.ico" >
2023-12-03 17:14:28 +01:00
< title > XPath Trainer< / title >
< / head >
< body >
< header > < h1 > XPath Trainer< / h1 > < / header >
< main >
2023-12-10 11:07:16 +01:00
< form id = "trainerForm" >
2023-12-03 17:14:28 +01:00
< 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 >
< / form >
2023-12-10 11:07:16 +01:00
< div id = "frame" > < iframe id = "display" src = "" height = "800px" > < / iframe > < / div >
< div id = "results" > < / div >
2023-12-03 17:14:28 +01:00
< / main >
< / body >
< / html >