-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreport-mask.html
More file actions
44 lines (41 loc) · 1.13 KB
/
report-mask.html
File metadata and controls
44 lines (41 loc) · 1.13 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
<link href="../css/report-mask.css" rel="stylesheet" />
<div
id="maskOverlay"
class="mask-overlay"
role="presentation"
aria-hidden="true"
>
<div
id="maskDialog"
class="mask-dialog"
role="dialog"
aria-modal="true"
aria-labelledby="maskTitle"
>
<header>
<h2 id="maskTitle">Report structure</h2>
<button id="closeMaskBtn" class="mask-close" aria-label="Close dialog">
✕
</button>
</header>
<form id="maskForm">
<label for="nameInput" class="visually-hidden">Name</label>
<input type="text" id="nameInput" placeholder="Name" />
<label for="descriptionInput" class="visually-hidden">Description</label>
<textarea
type="text"
rows="5"
cols="30"
id="descriptionInput"
placeholder="Please describe the problem that occurs with the structure."
required
></textarea>
<div class="mask-actions">
<button type="button" id="cancelBtn" class="btn-secondary">
Cancel
</button>
<button type="submit" class="btn-primary">Submit</button>
</div>
</form>
</div>
</div>