-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
50 lines (50 loc) · 1.64 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>uLav FRESH</title>
<link rel="stylesheet" href="styles/style.css" type="text/css">
<script src="popupScripts/popup.js"></script>
</head>
<body>
<div class="popup-container">
<div class="section">
<a href="https://monportail.ulaval.ca" rel="noopener" target="_blank" class="branding-container">
<img src="images/logo48.png" class="logo" alt="uLav FRESH logo">
<h1 class="name blue-text">uLav FRESH</h1>
</a>
</div>
<div class="divider"></div>
<div class="section">
<div class="options-container row">
<div class="name">Mode sombre</div>
<div class="switch">
<label>
Désactivé
<input type="checkbox" id="dark-theme-checkbox">
<span class="lever"></span>
Activé
</label>
</div>
</div>
<div class="options-container row">
<div class="name">Sauvegarder les données de connexion</div>
<div class="switch">
<label>
Désactivé
<input type="checkbox" id="automated-login-checkbox">
<span class="lever"></span>
Activé
</label>
</div>
</div>
<div class="options-container row">
<a class="waves-effect waves-light btn-small blue"
target="_blank"
href="https://forms.gle/TnvsoHGPEqpidVUU9"
>Commentaires</a>
</div>
</div>
</div>
</body>
</html>