Skip to content

Commit e37070e

Browse files
author
Grzegorz
committed
release: 3.4.0
1 parent d587b19 commit e37070e

14 files changed

+87
-78
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MDB5
2-
Version: FREE 3.3.0
2+
Version: FREE 3.4.0
33

44
Documentation:
55
https://mdbootstrap.com/docs/standard/

css/mdb.dark.min.css

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.rtl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 19 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
<!-- Font Awesome -->
1111
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
1212
<!-- Google Fonts Roboto -->
13-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
13+
<link
14+
rel="stylesheet"
15+
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
16+
/>
1417
<!-- MDB -->
1518
<link rel="stylesheet" href="css/mdb.min.css" />
1619
</head>
@@ -19,36 +22,20 @@
1922
<div class="container">
2023
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;">
2124
<div class="text-center">
22-
<h2>Release surprise! </h2>
23-
<p class="h4 fw-bold">50% OFF MDB PRO</p>
24-
<div class="row justify-content-center">
25-
<div class="col-md-6">
26-
<img src="https://mdbootstrap.com/img/Marketing/campaigns/50off-SJARV.png" class="img-fluid" alt="" />
27-
</div>
28-
</div>
29-
30-
<h5 class="mb-3">Use this coupon code before it expires and claim the reward</h5>
31-
<p class="mb-3">The coupon code will be valid until the end of the week</p>
32-
33-
<div class="mt-2">
34-
35-
<!--Coupon code-->
36-
<code class="h2 border rounded py-1 px-5 flex-item me-2">T9TTVSQB</code>
37-
<br>
38-
39-
<!--Copy to clipboard-->
40-
41-
<a id="disc-50" href="#" type="button" class="btn-lg btn-info" style="background-color: #009FE7;">COPY TO
42-
CLIPBOARD <i class="far fa-copy ml-2"></i></a>
43-
<a class="btn btn-outline-primary btn-lg mt-3" href="https://mdbootstrap.com/docs/standard/getting-started/"
44-
target="_blank" style="border-color: #009FE7; color: #009FE7;" role="button">Start MDB tutorial</a>
45-
46-
</div>
47-
<p>See <a href="https://mdbootstrap.com/pro/">prices</a></p>
48-
<div class=" my-2 alert alert-success" id="code-success" style="display: none;">
49-
Copied
50-
</div>
51-
25+
<img
26+
class="mb-4"
27+
src="https://mdbootstrap.com/img/logo/mdb-transparent-250px.png"
28+
style="width: 250px; height: 90px;"
29+
/>
30+
<h5 class="mb-3">Thank you for using our product. We're glad you're with us.</h5>
31+
<p class="mb-3">MDB Team</p>
32+
<a
33+
class="btn btn-primary btn-lg"
34+
href="https://mdbootstrap.com/docs/standard/getting-started/"
35+
target="_blank"
36+
role="button"
37+
>Start MDB tutorial</a
38+
>
5239
</div>
5340
</div>
5441
</div>
@@ -57,25 +44,6 @@ <h5 class="mb-3">Use this coupon code before it expires and claim the reward</h5
5744
<!-- MDB -->
5845
<script type="text/javascript" src="js/mdb.min.js"></script>
5946
<!-- Custom scripts -->
60-
<script type="text/javascript">
61-
var a = document.getElementById('disc-50');
62-
a.onclick = function () {
63-
Clipboard_CopyTo("T9TTVSQB");
64-
var div = document.getElementById('code-success');
65-
div.style.display = 'block';
66-
setTimeout(function () {
67-
document.getElementById('code-success').style.display = 'none';
68-
}, 900);
69-
};
70-
71-
function Clipboard_CopyTo(value) {
72-
var tempInput = document.createElement("input");
73-
tempInput.value = value;
74-
document.body.appendChild(tempInput);
75-
tempInput.select();
76-
document.execCommand("copy");
77-
document.body.removeChild(tempInput);
78-
}
79-
</script>
47+
<script type="text/javascript"></script>
8048
</body>
8149
</html>

0 commit comments

Comments
 (0)