-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): Replaced 2024 with 2025 in static HTML pages
- Loading branch information
Showing
2 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<meta name="description" content="EmailEngine" /> | ||
<title>EmailEngine</title> | ||
<title>EmailEngine Set-up</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
|
@@ -23,9 +23,10 @@ | |
<div class="row mt-4"> | ||
<div class="col-12 col-sm-12 col-md-12 col-lg-8"> | ||
<p> | ||
<a href="https://emailengine.app" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">EmailEngine</a> is an email | ||
client for apps, not people. It connects to the user's email server, translates REST API requests from the app to IMAP and SMTP | ||
commands, and sends webhooks for changes like new or deleted emails. | ||
<a href="https://emailengine.app/" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">EmailEngine</a> is an | ||
email client designed for applications, not individual users. It connects to users' email servers and translates REST API requests | ||
from the app into IMAP and SMTP commands, or into Gmail API or Microsoft Graph API requests. Additionally, it sends webhooks to | ||
notify the app of events such as new or deleted emails. | ||
</p> | ||
|
||
<div class="mt-4 alert alert-info"> | ||
|
@@ -44,7 +45,7 @@ | |
<a href="https://emailengine.app" target="_blank" rel="noopener noreferrer" rel="noopener noreferrer" referrerpolicy="no-referrer" | ||
>EmailEngine</a | ||
> | ||
<span class="text-muted">© 2020-2024</span> | ||
<span class="text-muted">© 2020-<span id="curyear">2025</span></span> | ||
<a class="text-muted" href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">Postal Systems OÜ</a>. | ||
</div> | ||
</div> | ||
|
@@ -53,6 +54,7 @@ | |
|
||
<script> | ||
document.getElementById('hostname').textContent = window.location.hostname; | ||
document.getElementById('curyear').textContent = new Date().getFullYear(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,14 @@ | |
<link rel="manifest" href="/static/favicon/manifest.json" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
|
||
<link href="/static/bootstrap-4.6.2-dist/css/bootstrap.min.css" rel="stylesheet" /> | ||
<link href="/static/css/callout.css" rel="stylesheet" /> | ||
|
||
<link href="/static/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css" /> | ||
|
||
<link href="/static/fonts/nunito-font.css" rel="stylesheet" /> | ||
|
||
<link href="/static/css/sb-admin-2.min.css" rel="stylesheet" /> | ||
<link href="/static/css/app.css" rel="stylesheet" /> | ||
<link href="/static/css/emailengine.css" rel="stylesheet" /> | ||
</head> | ||
<body class="d-flex flex-column h-100"> | ||
|
@@ -26,13 +32,19 @@ | |
<div class="row mt-4"> | ||
<div class="col-12 col-sm-12 col-md-12 col-lg-8"> | ||
<p> | ||
<a href="https://emailengine.app" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">EmailEngine</a> is an email | ||
client for apps, not people. It connects to the user's email server, translates REST API requests from the app to IMAP and SMTP | ||
commands, and sends webhooks for changes like new or deleted emails. | ||
<a href="https://emailengine.app/" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">EmailEngine</a> is an | ||
email client designed for applications, not individual users. It connects to users' email servers and translates REST API requests | ||
from the app into IMAP and SMTP commands, or into Gmail API or Microsoft Graph API requests. Additionally, it sends webhooks to | ||
notify the app of events such as new or deleted emails. | ||
</p> | ||
|
||
<div class="mt-4"> | ||
<a href="/admin" class="btn btn-primary">Manage EmailEngine</a> | ||
<a href="/admin" class="btn btn-primary btn-icon-split"> | ||
<span class="text">Manage EmailEngine</span> | ||
<span class="icon text-white-50"> | ||
<i class="fas fa-tools"></i> | ||
</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
@@ -44,11 +56,15 @@ | |
<div class="row"> | ||
<div class="col-sm-8"> | ||
<a href="https://emailengine.app" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">EmailEngine</a> | ||
<span class="text-muted">© 2020-2023</span> | ||
<span class="text-muted">© 2020-<span id="curyear">2025</span></span> | ||
<a class="text-muted" href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">Postal Systems OÜ</a>. | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
<script> | ||
document.getElementById('curyear').textContent = new Date().getFullYear(); | ||
</script> | ||
</body> | ||
</html> |