-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
92 lines (78 loc) · 2.14 KB
/
Copy pathapp.html
File metadata and controls
92 lines (78 loc) · 2.14 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval';">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StuAuthWeb</title>
<style>
body {
background-color: #efefef;
font-family: Arial, sans-serif;
margin: 0;
padding: 10px;
width: 300px;
}
.container {
width: 100%;
}
.status {
font-size: 12px;
margin-bottom: 8px;
min-height: 16px;
color: #b00020;
}
.panel {
border: 1px solid #ccc;
border-radius: 5px;
overflow: hidden;
margin-bottom: 10px;
background: white;
}
.folder-list-item,
.account-list-item {
padding: 8px;
border-bottom: 1px solid #ddd;
}
.folder-list-item:last-child,
.account-list-item:last-child {
border-bottom: none;
}
.folder-list-item {
cursor: pointer;
font-weight: bold;
}
.folder-list-item:hover {
background: #f7f7f7;
}
.account-list-item {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
}
.copy-button {
padding: 4px 8px;
cursor: pointer;
}
.footer {
text-align: right;
font-size: 12px;
}
.footer a {
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div id="status" class="status"></div>
<div id="folderList" class="panel"></div>
<div id="accountList" class="panel"></div>
<div class="footer">
<a href="settings.html" target="_blank">Paramètres</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>