-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwith-checkboxes.html
98 lines (96 loc) · 3.96 KB
/
with-checkboxes.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
/>
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
</head>
<body>
<!-- Start your project here-->
<div class="container d-flex justify-content-center mt-5">
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-mdb-toggle="modal" data-mdb-target="#cookieconsent3">
Launch cookie consent
</button>
<!-- Modal -->
<div class="modal top fade" id="cookieconsent3" tabindex="-1" aria-labelledby="cookieconsentLabel3" aria-hidden="true" data-mdb-backdrop="static" data-mdb-keyboard="false">
<div class="modal-dialog">
<div class="modal-content d-block text-start">
<div class="modal-header d-block ">
<h5 class="modal-title" id="cookieconsentLabel3">Cookies & Privacy</h5>
<p>
This website uses cookies to ensure you get the best experience on our website.
</p>
<p>
<a href="#">Read more about cookies</a>
</p>
</div>
<div class="modal-body">
<!-- Necessary checkbox -->
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="necessary" checked />
<label class="form-check-label" for="necessary">
<p>
<strong>Necessary cookies</strong>
<muted>help with the basic functionality of our website, e.g remember if you gave consent to cookies.</muted>
</p>
</label>
</div>
<!-- Analytical checkbox -->
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="analytical" />
<label class="form-check-label" for="analytical">
<p>
<strong>Analytical cookies</strong>
<muted>make it possible to gather statistics about the use and trafiic on our website, so we can make it better.</muted>
</p>
</label>
</div>
<!-- Marketing checkbox -->
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="marketing" />
<label class="form-check-label" for="marketing">
<p>
<strong>Marketing cookies</strong>
<muted>make it possible to show you more relevant social media content and advertisements on our website and other platforms.</muted>
</p>
</label>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-primary" data-mdb-dismiss="modal">
Accept necessary
</button>
<button type="button" class="btn btn-primary" data-mdb-dismiss="modal">
Accept all
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
</div>
<!-- Modal -->
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>