-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
70 lines (69 loc) · 2.26 KB
/
admin.html
File metadata and controls
70 lines (69 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Dydra.com - Administration" />
<meta name="author" content="Dydra" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dydra Administration</title>
<link rel="shortcut icon" href="/ui/favicon.ico" />
<link rel="apple-touch-icon" href="/ui/apple-touch-icon.png" />
<link rel="stylesheet" href="/ui/stylesheets/style.css" media="screen" />
<link rel="stylesheet" href="/ui/stylesheets/jsui-overrides.css" media="screen" />
<style>
/* SVG logo variant (revert to PNG: remove this block, uncomment the one below) */
#logo {
width: 278px;
background-image: url('/ui/images/Dydra Logo-admin.svg') !important;
background-size: contain;
background-repeat: no-repeat;
}
/* PNG logo fallback:
#logo {
width: 286px;
background-image: url('/ui/images/logo-admin.png') !important;
}
*/
/* Admin login page: match user app #tab-login styling */
body.devise #content-container {
background: rgba(151, 198, 159, 0.3);
min-height: calc(100vh - 200px);
padding: 20px;
position: relative;
overflow: hidden;
}
body.devise #content-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/ui/images/Dydra Logo-admin.svg');
background-repeat: repeat;
background-size: 200%;
opacity: 0.02;
transform: rotate(-30deg);
pointer-events: none;
z-index: 0;
}
body.devise #content-container > * {
position: relative;
z-index: 1;
}
body.devise #inline-login-form,
body.devise #inline-login-form fieldset,
body.devise #inline-login-form fieldset.inputs,
body.devise #inline-login-form fieldset.buttons,
body.devise #inline-login-form ol,
body.devise #login-error,
body.devise #login-error .alert-error {
background: transparent;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/ui/admin-app.js"></script>
</body>
</html>