File size: 2,051 Bytes
7c89ed7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!--
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 https://mozilla.org/MPL/2.0/.
Copyright (c) 2014 Mozilla Corporation
-->

<!--new incident form -->
<template name="addincidentform">
  <form id="addincidentform" class="form-horizontal" style="margin: 0px 30% 20px;">
    <legend>New Incident</legend>
    <!-- Summary -->
    <div class="form-group">
      <label class="col-xs-3 control-label" for="summary">Incident Summary:</label>
      <div class="col-xs-5">
        <input id="summary" name="summary" placeholder="e.g. Data Disclosure on Foo Product"
          class="form-control summary" required="" type="text">
      </div>
    </div>
    <!-- date Opened -->
    <div class="form-group">
      <label class="col-xs-3 control-label" for="dateOpened">Date Opened:</label>
      <div class="col-xs-5">
        <div class="input-prepend input-group">
          <span class="add-on input-group-addon"><i class="icon-calendar fa fa-calendar"></i></span>
          <input class="input form-control dateOpened calendarfield" name="dateOpened" id="dateOpened" type="text"
            placeholder="today" value="{{uiDateFormat now}}">
        </div>
      </div>
    </div>
    <!-- Phase -->
    <div class="form-group">
      <label class="col-xs-3 control-label" for="phase">Phase:</label>
      <div class="col-xs-5">
        <select id="phase" name="phase" class="form-control">
          <option>Identification</option>
          <option>Containment</option>
          <option>Eradication</option>
          <option>Recovery</option>
          <option>Lessons Learned</option>
        </select>
      </div>
    </div>

    <!-- Button -->
    <div class="form-group">
      <label class="col-xs-3 control-label" for="submit"></label>
      <div class="col-xs-3">
        <button id="submit" type="submit" name="submit" class="form-control btn btn-primary submit">Save</button>
      </div>
    </div>
  </form>
</template>