forked from danblundell/civic.json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerator.htm
More file actions
171 lines (151 loc) · 8.12 KB
/
generator.htm
File metadata and controls
171 lines (151 loc) · 8.12 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>civic.json generator</title>
<<<<<<< HEAD
<link rel="stylesheet" href="//ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//bforben.github.io/bootstrap-tagsinput/dist/bootstrap-tagsinput.css">
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/bootstrap.min.js"></script>
<script src="//bforben.github.io/bootstrap-tagsinput/dist/bootstrap-tagsinput.js"></script>
=======
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.2.0/css/bootstrap.min.css">
>>>>>>> origin/master
</head>
<body>
<div class="container">
<h1>civic.json generator</h1>
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="status" class="col-sm-2 control-label">Status</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="status" list="statuses" name="status" placeholder="e.g. Beta">
<datalist id="statuses">
<option value="Ideation" label="Ideation - Brainstorming phase">
<option value="Alpha" label="Alpha - Brainstorming phase">
<option value="Beta" label="Beta - Brainstorming phase">
<option value="Production" label="Production - Finished Product, development ongoing">
<option value="Sunset" label="Sunset - Finished Product, development ceasing">
<option value="Archival" label="Archival - Finished Product, development ceased">
</datalist>
<span class="help-block">Text indicating the status of the project. Any text is allowed, but a selection from the recommended values is advised.</span>
</div>
</div>
<div class="form-group">
<label for="thumbnailUrl" class="col-sm-2 control-label">Thumbnail</label>
<div class="col-sm-10">
<input type="url" class="form-control" id="thumbnailUrl" name="thumbnailUrl" placeholder="e.g. https://avatars.githubusercontent.com/u/6362924?s=64">
<span class="help-block">A url to an image associated with the project listing</span>
</div>
</div>
<div class="form-group">
<label for="bornAt" class="col-sm-2 control-label">Born at</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="bornAt" name="bornAt" placeholder="e.g. LocalGovDigital Makers Hackday">
<span class="help-block">Text indicating the name of the event or place the project was conceived at, if any. Any text is allowed.</span>
</div>
</div>
<div class="form-group">
<label for="geography" class="col-sm-2 control-label">Geography</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="geography" name="geography" placeholder="e.g. UK">
<span class="help-block">Text indicating the town, city, county, or other geographic entity this project is relevant to. Any text is allowed.</span>
</div>
</div>
<div class="form-group">
<label for="politicalEntity" class="col-sm-2 control-label">Political entity</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="politicalEntity" name="politicalEntity" placeholder="e.g. Brighton and Hove Council">
<span class="help-block">Text indicating the political entity the project is relevant to. Any text is allowed.</span>
</div>
</div>
<div class="form-group">
<label for="type" class="col-sm-2 control-label">Type</label>
<div class="col-sm-10">
<input type="text" class="form-control" list="types" id="type" name="type" placeholder="e.g. Web App">
<datalist id="types">
<option value="Web App">
<option value="Mobile App">
<option value="Policy Document">
<option value="Dataset">
<option value="Schema">
</datalist>
<span class="help-block">Text describing the type of project. Any text is allowed, but a selection from the recommended values is advised.</span>
</div>
</div>
<div class="form-group">
<label for="needs" class="col-sm-2 control-label">Needs</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="needs" name="needs" placeholder="e.g. Web Designer" data-role="tagsinput">
<span class="help-block">An array of "need" objects. There is no limit to the number of needs included in a project.</span>
</div>
</div>
<div class="form-group">
<label for="categories" class="col-sm-2 control-label">Categories</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="categories" name="categories" placeholder="e.g. Community" data-role="tagsinput">
<span class="help-block">An array of "category" objects. There is no limit to the number of categories included in a project.</span>
</div>
</div>
<fieldset>
<legend>Owner</legend>
<<<<<<< HEAD
<p>Object indicating the person or organisation that the project is owned by.</p>
=======
>>>>>>> origin/master
<div class="form-group">
<label for="ownerName" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="ownerName" name="owner.name" placeholder="e.g. Brighton and Hove Council">
</div>
</div>
<div class="form-group">
<label for="ownerType" class="col-sm-2 control-label">Type</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="ownerType" name="owner.type" placeholder="e.g. Local council">
</div>
</div>
<div class="form-group">
<label for="ownerId" class="col-sm-2 control-label">ID</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="ownerId" name="owner.id" placeholder="e.g. http://gov.uk/councils/brighton">
</div>
</div>
</fieldset>
<fieldset>
<legend>Deployments</legend>
<div class="form-group">
<label for="deployments" class="col-sm-2 control-label">Deployments</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="deployments" name="deployments" placeholder="Deployments">
</div>
</div>
</fieldset>
<fieldset>
<legend>Service categories</legend>
<div class="form-group">
<label for="serviceCategories" class="col-sm-2 control-label">Service categories</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="serviceCategories" name="serviceCategories" placeholder="Service categories">
</div>
</div>
</fieldset>
<fieldset>
<legend>Technologies</legend>
<div class="form-group">
<label for="technologies" class="col-sm-2 control-label">Technologies</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="technologies" name="technologies" placeholder="Technologies">
</div>
</div>
</fieldset>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Generate civic.json</button>
</div>
</div>
</form>
</div>
</body>
</html>