-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 965 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<title>Monica</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>MSI WIX APPROACH HERE</h1>
<h1>FRESH ONE - NEWWWWWWWWWWWWW RELEASE</h1>
<br/>
<label>Click here to open the text editor</label>
<button id="open">Open</button>
<br/><br/>
<label>Click here to get the notification</label>
<button id="notify">Notification</button>
<div id="notification" class="hidden">
<p id="message"></p>
<p id="messages"></p>
<button id="close-button" onClick="closeNotification()">
Close
</button>
<br/>
<button id="restart-button" onClick="restartApp()" class="hidden">
Restart
</button>
</div>
<script src="index.js"></script>
</body>
</html>