-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
66 lines (64 loc) · 2.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>XPath tester - Available on GitHub</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="github-corner">
<a href="https://github.com/jpetitcolas/xpath-tester">
<img src="images/fork-me.png" alt="Fork me on GitHub">
</a>
</div>
<header>
<div class="row">
<div class="columns twelve">
<h1>XPath tester</h1>
</div>
</div>
</header>
<div class="row">
<div class="columns twelve">
<div class="error" id="error" style="display: none;"></div>
</div>
</div>
<div class="row">
<div class="columns six">
<form method="POST" action="php/xpath-tester.php" id="xpath_form">
<p>
<label for="xpath_expression">XPath expression:</label>
<input type="text" name="xpath_expression" id="xpath_expression" value="" />
</p>
<p>
<label for="xml_input">XML input:</label>
<textarea name="xml_input" id="xml_input" cols="50" rows="16"></textarea>
</p>
<p>
<button type="submit">Evaluate</button>
</p>
</form>
</div>
<div class="columns six">
<p class="result">
<span>XPath query result</span>
<span id="result-count"></span>
<span class="clear"></span>
</p>
<code id="result"></code>
</div>
</div>
<footer>
<div class="row">
<div class="columns twelve">
<p class="text-center">
XPath tester is an open-source project under MIT licence, available on <a href="https://github.com/jpetitcolas/xpath-tester">GitHub</a>.<br />
Contributors: <a href="http://www.jonathan-petitcolas.com">Jonathan Petitcolas</a>, <a href="https://github.com/pixeline">Pixeline</a>
</p>
</div>
</div>
</footer>
<script src="javascripts/jquery.min.js"></script>
<script src="javascripts/app.js"></script>
</body>
</html>