-
Notifications
You must be signed in to change notification settings - Fork 5
/
validator.html
34 lines (32 loc) · 1.43 KB
/
validator.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Civic.JSON (Extended)</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script src="//code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="./javascripts/tv4.min.js" type="text/javascript"></script>
<script src="./javascripts/validator.js" type="text/javascript"></script>
<link href="stylesheets/index.css" rel="stylesheet">
</head>
<body>
<div class="ribbon">beta</div>
<div id="container">
<div class="center-block text-center" id="header">
<div class="menu">
<div class="header_text"><a href=".">about</a><a href="./specification.html">specification</a><a href="./builder.html">builder</a><a href="./validator.html">validator</a>
</div></div>
<div class="header_text"><h1><a href=".">civic.json</a></h1>
<h4>(extended)</h4>
<p>document your project for the betterment of humankind</p></div>
</div>
<div class="center-block form">
<div><textarea id="to_validate" placeholder="Paste your civic.json here"></textarea></div>
<button class="btn btn-primary" id="validate" type="submit">Validate</button>
</div>
<div class="center-block text-center" id="validate_result"></div>
</div>
<script>
</script>
</body>
</html>