-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 992 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 992 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PopUp SMS</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="buttons_container">
<button class="main_button" onclick="warning.renderPopup()">Warning</button>
<button class="main_button" onclick="error.renderPopup()">Error</button>
<button class="main_button" onclick="info.renderPopup()">Info</button>
<button class="main_button" onclick="success.renderPopup()">Success</button>
<button class="main_button" onclick="modal.renderPopup()">Modal Window</button>
</div>
<div class="popup_container"></div>
<script src="./mainFrame.js"></script>
<script src="./toastFrame.js"></script>
<script src="./errorFrame.js"></script>
<script src="./warningFrame.js"></script>
<script src="./infoFrame.js"></script>
<script src="./successFrame.js"></script>
<script src="./modalWindowFrame.js"></script>
</body>
</html>