19 lines
507 B
HTML
19 lines
507 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Parser Juniper</title>
|
|
</head>
|
|
<body>
|
|
<form action="">
|
|
<textarea id="input" name="inputConf" cols="30" rows="10"></textarea>
|
|
<textarea id="output" name="outputConf" cols="30" rows="10" disabled></textarea>
|
|
<input type="button" onClick="letsParse()" value="Parse !">
|
|
</form>
|
|
<script src="parser.js"></script>
|
|
<script src="changeDom.js"></script>
|
|
|
|
<h2>Informations</h2>
|
|
|
|
</body>
|
|
</html>
|