Skip to content

Commit

Permalink
fix(ui): Replaced 2024 with 2025 in static HTML pages
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Jan 2, 2025
1 parent ee6329b commit 99e805b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
12 changes: 7 additions & 5 deletions static/front/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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">
Expand All @@ -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">&copy; 2020-2024</span>
<span class="text-muted">&copy; 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>
Expand All @@ -53,6 +54,7 @@

<script>
document.getElementById('hostname').textContent = window.location.hostname;
document.getElementById('curyear').textContent = new Date().getFullYear();
</script>
</body>
</html>
28 changes: 22 additions & 6 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -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>
Expand All @@ -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">&copy; 2020-2023</span>
<span class="text-muted">&copy; 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>

0 comments on commit 99e805b

Please sign in to comment.