-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathalertModal.html
More file actions
38 lines (34 loc) · 1.34 KB
/
alertModal.html
File metadata and controls
38 lines (34 loc) · 1.34 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
<!--
Project Name : Visual Python
Description : GUI-based Python code generator
File Name : alertModal.html
Author : Black Logic
Note : Alert modal
License : GNU GPLv3 with Visual Python special exception
Date : 2021. 12. 15
Change Date :
-->
<!-- use body tag to strip comments out on requirejs/text plugin -->
<body>
<div id="vp_alertModal">
<div class="vp-alertModal-container" >
<div class="vp-alertModal-inner
vp-alertModal-style-flex-column-evenly">
<div class="vp-alertModal-style-flex-row-center">
<i class="vp-alertModal-icon" aria-hidden="true">
</i>
</div>
<div class="vp-alertModal-titleStr
vp-alertModal-style-text-center
vp-alertModal-style-font-weight-700">
</div>
<div class="vp-alertModal-detailStr vp-scrollbar">
</div>
<div class="vp-alertModal-style-flex-row-center">
<input class="vp-alertModal-yes
vp-alertModal-input-button" type="submit" value="OK" />
</div>
</div>
</div>
</div>
</body>