summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/bug/create/create-creative.html.tmpl
blob: 88e744abec335d77c8a9eeefb40c6be54a06c42d (plain)
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[% PROCESS global/variables.none.tmpl %]

[% inline_style = BLOCK %]
#creative_form {
  padding: 10px;
}
#creative_form .required:after {
  content: " *";
  color: red;
}
#creative_form .field_label {
  font-weight: bold;
}
#creative_form .field_desc {
  padding-bottom: 3px;
}
#creative_form .field_desc,
#creative_form .head_desc {
  width: 600px;
  word-wrap: normal;
}
#creative_form .head_desc {
  padding-top: 5px;
  padding-bottom: 12px;
}
#creative_form .form_section {
  margin-bottom: 10px;
}
#creative_form textarea {
  font-family: inherit;
  font-size: inherit;
}
#creative_form em {
  font-size: 1em;
}
#creative_form input[disabled] {
  background: transparent;
}
.yui-calcontainer {
  z-index: 2;
}
[% END %]

[% inline_javascript = BLOCK %]
function validateAndSubmit() {
  var alert_text = '';
  if (!isFilledOut('overview')) alert_text += 'Please enter a value for Project Overview.\n';
  if (!isFilledOut('short_desc')) alert_text += 'Please enter a value for Request Title.\n';
  if (!isFilledOut('specs')) alert_text += 'Please enter a value for Creative Specs.\n';
  if (!isFilledOut('cta_design')) alert_text += 'Please enter a value for CTA Design.\n';
  if (!isFilledOut('launch_date')) alert_text += 'Please enter a value for the expected launch date.\n';
  if (!isFilledOut('goal')) alert_text += 'Please select a value for Mozilla Goal.\n';
  if (YAHOO.util.Dom.get('goal').value == 'Other') {
    if (!isFilledOut('goal_other')) alert_text += 'Please select a value for Mozilla Goal Other.\n';
  }
  if (YAHOO.util.Dom.get('type_copy').checked == false
      && YAHOO.util.Dom.get('type_design').checked == false
      && YAHOO.util.Dom.get('type_video').checked == false
      && YAHOO.util.Dom.get('type_other').checked == false)
  {
     alert_text += 'Please select at least one type of help needed.\n';
  }
  if (YAHOO.util.Dom.get('type_other').checked == true) {
    if (!isFilledOut('type_other_text')) alert_text += 'Please enter a value for other type of help needed.\n';
  }
  if (alert_text != '') {
    alert(alert_text);
    return false;
  }

  document.getElementById('cc').value = document.getElementById('poc').value;
  if (document.getElementById('collective').checked) {
    document.getElementById('cc').value = document.getElementById('cc').value + ', smartell@mozilla.com, enoonan@mozilla.com';
    document.getElementById('status_whiteboard').value = 'Creative Collective Project';
  } else {
    document.getElementById('status_whiteboard').value = '';
  }

  return true;
}
function toggleGoalOther() {
  var goal_select = YAHOO.util.Dom.get('goal');
  if (goal_select.options[goal_select.selectedIndex].value == 'Other') {
    YAHOO.util.Dom.removeClass('goal_other','bz_default_hidden');
  }
  else {
    YAHOO.util.Dom.addClass('goal_other','bz_default_hidden');
  }
}
function toggleTypeOther(element) {
  var other_text = YAHOO.util.Dom.get('type_other_text');
  if (element.checked == true) {
    other_text.disabled = false;
    other_text.focus();
  }
  else {
    other_text.disabled = true;
  }
}

[% END %]

[% PROCESS global/header.html.tmpl
   title = "Creative Initiation Form"
   generate_api_token = 1
   style = inline_style
   javascript = inline_javascript
   javascript_urls = [ 'extensions/BMO/web/js/form_validate.js',
                       'js/field.js', 'js/util.js' ]
   yui = [ "calendar" ]
%]

[% USE Bugzilla %]
[% cgi = Bugzilla.cgi %]

<form id="creative_form" method="post" action="post_bug.cgi" enctype="multipart/form-data"
      onSubmit="return validateAndSubmit();">
  <input type="hidden" name="format" value="creative">
  <input type="hidden" name="product" value="Marketing">
  <input type="hidden" name="component" value="Design">
  <input type="hidden" name="rep_platform" value="All">
  <input type="hidden" name="op_sys" value="Other">
  <input type="hidden" name="version" value="unspecified">
  <input type="hidden" name="bug_severity" id="bug_severity" value="normal">
  <input type="hidden" name="cc" id="cc" value="">
  <input type="hidden" name="status_whiteboard" id="status_whiteboard" value="">
  <input type="hidden" name="token" value="[% token FILTER html %]">

<img title="Creative Initiation Form" src="extensions/BMO/web/images/creative.png">

<div class="head_desc">
  Have a new project or campaign that requires copy, design, video or other awesomeness
  from your friendly neighborhood Brand Team? Please use this form to tell us about it
  and we'll get back to you with next steps as soon as possible.
</div>

<div class="form_section">
  <label for="short_desc" class="field_label required">Project / Request Title</label>
  <div class="field_desc">
    Describe your project or request in a few words or a short phrase.
  </div>
  <input type="text" name="short_desc" id="short_desc" size="80">
</div>

<div class="form_section">
  <label for="overview" class="field_label required">Project Overview</label>
  <div class="field_desc">
    Briefly describe the background, goals and objectives for this project.
  </div>
  <textarea id="overview" name="overview" cols="80" rows="5"></textarea>
</div>

<div class="form_section">
  <label for="specs" class="field_label required">Creative Specs and Deliverables</label>
  <div class="field_desc">
    Select what sort of help you need (check at least one or more)
  </div>
  <input type="checkbox" name="type_copy" id="type_copy" value="1">
  <label for="type_copy">Copy</label>
  <br>
  <input type="checkbox" name="type_design" id="type_design" value="1">
  <label for="type_design">Design</label>
  <br>
  <input type="checkbox" name="type_video" id="type_video" value="1">
  <label for="type_video">Video</label>
  <br>
  <input type="checkbox" name="type_other" id="type_other" value="1" onchange="toggleTypeOther(this);">
  <label for="type_other">Other</label>&nbsp;&nbsp;
  <input type="text" name="type_other_text" id="type_other_text" disabled>
  <br>
  <br>
  <div class="field_desc">
    <strong class="required">Specs</strong><br>
    What is the final deliverable and what format should it be delivered in?
    Please include information on the format, image/file size, word count, video length,
    etc. We like details here.
  </div>
  <textarea id="specs" name="specs" cols="80" rows="5"></textarea>
  <br>
  <br>
  <div class="field_desc">
    <strong class="required">CTAs and design directions</strong><br>
    Provide as much information as possible. Make sure to include links to documents with copy,
    mock-ups, wireframes, or any other information or assets that could help with direction.
  </div>
  <textarea id="cta_design" name="cta_design" cols="80" rows="5"></textarea>
</div>

<div class="form_section">
  <label for="launch_date" class="field_label required">
    Expected Launch Date
  </label>
  <div class="field_desc">
    When do you anticipate your project launching? We will determine a creative
    due date with you based on this to ensure that it works for everyone.
  </div>
  <input name="launch_date" size="20" id="launch_date" value=""
         onchange="updateCalendarFromField(this)">
  <button type="button" class="calendar_button"
          id="button_calendar_launch_date"
          onclick="showCalendar('launch_date')">
    <span>Calendar</span>
  </button>
  <div id="con_calendar_launch_date"></div>
  <script type="text/javascript">
    createCalendar('launch_date')
  </script>
</div>

<div class="form_section">
  <label for="goal" class="field_label required">Mozilla Goal</label>
  <div class="field_desc">
    Which high-level Mozilla goal does this project support?
  </div>
  <select id="goal" name="goal"
          onchange="toggleGoalOther();">
    <option value="">Please select..</option>
    <option value="Firefox OS">Firefox OS</option>
    <option value="Firefox Browser">Firefox Browser</option>
    <option value="Million Mozillians">Million Mozillians</option>
    <option value="Services">Services</option>
    <option value="Org Support">Org Support</option>
    <option value="Other">Other</option>
  </select>
  <br>
  <input type="text" name="goal_other" id="goal_other" size="40"
         class="bz_default_hidden" value="">
</div>

<div class="form_section">
  <label class="field_label">Mozilla Creative Collective</label>
  <div>
    <input type="checkbox" id="collective" name="collective">
    <label for="collective">
      I would like a
      <a href="https://wiki.mozilla.org/Design/creativecollective"
         target="_blank">Mozilla Creative Collective</a> designer to work on this project.
    </label>
  </div>
</div>

<div class="form_section">
  <label for="poc" class="field_label">Points of Contact</label>
  <div class="field_desc">
    Who should be kept in the loop and informed of updates (and CC'd on the [% terms.bug %])?
  </div>
  [% INCLUDE global/userselect.html.tmpl
     id       => "poc"
     name     => "poc"
     value    => ""
     size     => 80
     classes  => ["bz_userfield"]
     multiple => 5
  %]
</div>

<div class="head_desc">
  Thanks! Once you hit submit, your request will go off into the vortex of creative magic.
  (Actually, it goes to [% terms.Bugzilla %], but that doesn't sound as cool.) We'll be in touch soon
  with next steps and to let you know if we need any additional info.
</div>

<input type="submit" id="commit" value="Submit">

<p>
  [ <span class="required_star">*</span> <span class="required_explanation">Required Field</span> ]
</p>

</form>

[% PROCESS global/footer.html.tmpl %]