-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreport.html
More file actions
51 lines (47 loc) · 1.7 KB
/
report.html
File metadata and controls
51 lines (47 loc) · 1.7 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
<html>
<head>
<title>Report Issue</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="report.css">
</head>
<body>
<h1>Report Issue</h1>
<p>You may submit issues here against Incident Manager. Only submit issues here about the working of Incident Manager.
Do <strong>not submit issues</strong> here about the operation of Incident Manager,
such as specific incidents and work orders, or such as questions related to your user account.</p>
<form action="report.php" method="post" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label">Category:</label>
<div class="col-sm-10">
<select name="Category" class="form-control">
<option value="Defects">Defect</option>
<option value="Improvements" selected>Feature request</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Summary:</label>
<div class="col-sm-10">
<input name="Summary" type="text" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Description:</label>
<div class="col-sm-10">
<textarea rows="4" name="Description" class="form-control"></textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Contact information:</label>
<div class="col-sm-10">
<textarea rows="2" name="contact" class="form-control"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Report Issue</button>
</div>
</div>
</form>
</body>
</html>