-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.html
168 lines (148 loc) · 7.16 KB
/
add.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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<title></title>
<link rel="stylesheet" href="/bootstrap.min.css">
<link rel="stylesheet" href="/add.css">
<script src="http://gsmobile.tiddlyspace.com/modernizr-2.6.2.js"></script>
</head>
<body>
<header class="topbar">
<div>
<nav>
<ul>
<li><a href="add.html">add project</a></li>
<li><a href="pipeline.html">pipeline</a></li>
</ul>
</nav>
<h1>Pipeline Tool</h1>
</div>
</header>
<div class="wrapper">
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="inputTitle" class="control-label col-sm-4">Title</label>
<div class="col-sm-8">
<input type="text" placeholder="project name" id="inputTitle" class="form-control" />
<span class="helptext">enter a recognisable name for the project</span>
</div>
</div>
<div class="form-group">
<label for="marketSelect" class="control-label col-sm-4">Market Vertical</label>
<div class="col-sm-8">
<select name="select" data-tag-prefix="mv" class="form-control" id="marketSelect">
<option value="consumer">Consumer</option>
<option value="finance">Finance</option>
<option value="gaming">Gaming</option>
<option value="government">Government</option>
<option value="healthcare" selected>Healthcare</option>
<option value="logisitcs">Logistics</option>
</select>
<span class="helptext">select the sector project belongs to</span>
</div>
</div>
<div class="form-group">
<label for="originSelect" class="control-label col-sm-4">Origin</label>
<div class="col-sm-8">
<select name="select" data-tag-prefix="or" class="form-control" id="originSelect">
<option value="ei">EI</option>
<option value="re" selected>RE</option>
<option value="ci">CI</option>
</select>
<span class="helptext">from which initiative did the project originate?</span>
</div>
</div>
<div class="form-group">
<label for="maturitySelect" class="control-label col-sm-4">Maturity</label>
<div class="col-sm-8">
<select name="select" data-tag-prefix="mat" class="form-control" id="maturitySelect">
<option value="phase1">Phase1</option>
<option value="phase2">Phase2</option>
<option value="phase3">Phase3</option>
<option value="phase4">Phase4</option>
<option value="phase5">Phase5</option>
</select>
<span class="helptext">at what point in the cycle is the project?</span>
</div>
</div>
<div class="form-group">
<label for="leadInput" class="control-label col-sm-4">Current Lead</label>
<div class="col-sm-8">
<input type="text" placeholder="current lead" data-field-name="lead" id="leadInput" class="form-control" />
<span class="helptext">who is leading on the current phase?</span>
</div>
</div>
<div class="form-group">
<label for="sponsorInput" class="control-label col-sm-4">Sponsor</label>
<div class="col-sm-8">
<input type="text" placeholder="GS sponsor" data-field-name="gs_sponsor" id="sponsorInput" class="form-control" />
<span class="helptext">who is the senior backer?</span>
</div>
</div>
<div class="form-group" data-field-name="rag" data-input-type="radio">
<label for="ragRadios" class="control-label col-sm-4">RAG Status</label>
<div class="col-sm-8">
<label class="radio-inline">
<input type="radio" name="ragRadios" id="ragRadios_green" value="green">
green
</label>
<label class="radio-inline">
<input type="radio" name="ragRadios" id="ragRadios_amber" value="amber">
amber
</label>
<label class="radio-inline">
<input type="radio" name="ragRadios" id="ragRadios_red" value="red">
red
</label>
<span class="helptext">what is the current status?</span>
</div>
</div>
<div class="form-group">
<label for="typeSelect" class="control-label col-sm-4">Category</label>
<div class="col-sm-8">
<select name="select" data-field-name="category" id="typeSelect" class="form-control">
<option value="bau">BAU</option>
<option value="value2" selected>Val 2</option>
<option value="disruptive">Disruptive</option>
</select>
</div>
</div>
<div class="form-group">
<label for="notesText" class="control-label col-sm-4">Notes</label>
<div class="col-sm-8">
<textarea name="notesText" id="notesText" placeholder="notes" class="form-control" rows="2"></textarea>
<span class="helptext">enter any additional notes about the project</span>
</div>
</div>
<div class="form-group">
<div class="col-sm-8 col-sm-offset-4">
<button type="submit" class="btn btn-default">Submit</button>
<span class="submit-msg"></span>
</div>
</div>
</form>
</div>
<footer>
<p>Brought to you by <a href="http://tiddlyspace.com">TiddlySpace</a></p>
</footer>
<script src="/bags/common/tiddlers/jquery.js"></script>
<script src="/status.js"></script>
<script src="/pipeline.js"></script>
<script>
$(function() {
pipeline.add_init();
$("input, textarea, select", "form").on("focus", function(ev) {
var $this = $(ev.currentTarget);
$this.parent().addClass("active");
}).on("blur", function(ev) {
var $this = $(ev.currentTarget);
$this.parent().removeClass("active");
});
});
</script>
</body>
</html>