-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (100 loc) · 2.59 KB
/
index.html
File metadata and controls
101 lines (100 loc) · 2.59 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
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/js/all.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap" rel="stylesheet" />
<title>CraneMail Manager</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
flex-direction: column;
height: 100vh;
}
#navbar {
display: flex;
background-color: #121212;
padding: 8px;
justify-content: space-between;
align-items: center;
}
#navbar .nav-left {
display: flex;
gap: 10px;
justify-content: center;
flex: 1;
}
#navbar .nav-center {
display: flex;
gap: 10px;
justify-content: center;
flex: 2;
}
#navbar .nav-right {
display: flex;
gap: 10px;
}
#navbar button {
color: white;
background: none;
border: none;
padding: 10px;
cursor: pointer;
transition: background 0.3s;
}
#navbar button:hover {
background-color: #555;
}
.icon {
width: 24px;
height: 24px;
}
#logo {
display: flex;
align-items: center;
gap: 8px;
}
#logo img {
width: 30px;
height: auto;
}
#logo span {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
color: white;
font-size: 20px;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<div id="navbar">
<div id="logo">
<img src="icon.png" alt="CraneMail Logo" />
<span>CraneMail</span>
</div>
<div class="nav-center">
<button onclick="navigate('https://workspace.org')"><i class="fas fa-briefcase"></i></button>
<button onclick="navigate('https://us1.workspace.org')"><i class="fas fa-envelope"></i></button>
<button onclick="navigate('https://mx1.mxfilter.net')"><i class="fas fa-shield-alt"></i></button>
</div>
<div class="nav-right">
<button onclick="navigate('https://namecrane.com/clientarea.php')"><i class="fas fa-wrench"></i></button>
<button onclick="openPopup('info')"><i class="fas fa-info-circle"></i></button>
<button onclick="openPopup('logout')"><i class="fas fa-sign-out-alt"></i></button>
</div>
</div>
<script>
function navigate(url) {
window.api.navigate(url);
}
function openPopup(type) {
window.api.openPopup(type);
}
</script>
</body>
</html>