-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMitigationInputDialog.html
More file actions
70 lines (58 loc) · 2.41 KB
/
MitigationInputDialog.html
File metadata and controls
70 lines (58 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Form Name</legend>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="tbTrigger">Trigger</label>
<div class="controls">
<input name="tbTrigger" class="input-medium" id="tbTrigger" type="text" placeholder="Trigger Here">
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="tbTitle">Title:</label>
<div class="controls">
<input name="tbTitle" class="input-medium" id="tbTitle" type="text" placeholder="Title here">
</div>
</div>
<!-- Textarea -->
<div class="control-group">
<label class="control-label" for="tbDescription">Description here</label>
<div class="controls">
<textarea name="tbDescription" id="tbDescription"></textarea>
</div>
</div>
<!-- Textarea -->
<div class="control-group">
<label class="control-label" for="IssueMitigation">Mitigation</label>
<div class="controls">
<textarea name="IssueMitigation" id="IssueMitigation"></textarea>
</div>
</div>
<!-- Button (Double) -->
<div class="control-group">
<label class="control-label" for="btnApprove"></label>
<div class="controls">
<button name="btnApprove" class="btn btn-success" id="btnApprove">Save and Approve</button>
<button name="btnCancel" class="btn btn-danger" id="btnCancel">Cancel</button>
</div>
</div>
<!-- Button -->
<div class="control-group">
<label class="control-label" for="btnSaveContinueLater"></label>
<div class="controls">
<button name="btnSaveContinueLater" class="btn btn-default" id="btnSaveContinueLater">Save and Continue Later</button>
</div>
</div>
</fieldset>
</form>
</body>
</html>