-
Notifications
You must be signed in to change notification settings - Fork 5
/
builder.html
52 lines (46 loc) · 2.2 KB
/
builder.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Civic.JSON (Extended)</title>
<!-- dependencies (jquery, handlebars and bootstrap) -->
<script src="//code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src=
"//cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.min.js"
type="text/javascript"></script>
<link href=
"//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel=
"stylesheet" type="text/css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"
type="text/javascript"></script>
<!-- alpaca -->
<link href="//code.cloudcms.com/alpaca/1.5.15/bootstrap/alpaca.min.css"
rel="stylesheet" type="text/css">
<script src="//code.cloudcms.com/alpaca/1.5.15/bootstrap/alpaca.min.js"
type="text/javascript"></script>
<link href="stylesheets/index.css" rel="stylesheet">
<script type="text/javascript" src="javascripts/builder.js"></script>
</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 id="about" class="center-block form">
<p>The form below will help you build a valid civic.json file. Fill
out all of the required fields (marked by a star) and any others. Next, you can click the buttons at the bottom of the page to render and then download the output to your computer.</p>
</div>
<div class="center-block form" id="form"></div>
<pre class="center-block form" id="results"></pre>
<div class="text-center">
<a id="download_link"><button class="btn btn-default" id="download" type="submit" disabled="disabled">Download File</button></a>
</div>
</div>
</body>
</html>