-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexemple.html
29 lines (21 loc) · 1.01 KB
/
exemple.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
<!--
##### flashes messages #####
# Developed by Baramex #
### github: https://github.com/baramex ###
Licence: lgpl-3.0
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemple flashes messages by baramex</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="http://baramex.fr:9999/cdn/flashes-messages/flashs.css">
<script src="http://baramex.fr:9999/cdn/flashes-messages/flashs.js"></script>
</head>
<body onload='appendFlash("success-flash", "success flash!", 2000);appendFlash("info-flash", "info flash!", 3000);appendFlash("not-allowed-flash", "not allowed flash!", 4000);appendFlash("warning-flash", "warning flash!", 2000);appendFlash("error-flash", "error flash!", 5000);'
style="font-family: sans-serif;">
</body>
</html>