This repository has been archived on 2025-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
pontus-mail/src/request.ejs

30 lines
1.9 KiB
Plaintext
Raw Normal View History

<%- include('shards/header', { title: 'Request Status - p0ntus mail', currentPage: 'request' }) %>
<div class="container">
<%- include('shards/nav', { currentPage: 'request' }) %>
<i class="il mt-5">Request Status</i>
<hr>
<% if (request) { %>
<p>Request Status: <strong><%= request.status %></strong></p>
<% if (request.status === 'Approved') { %>
<div class="text-start">
<p>Your request has been approved. You can access your p0ntus mail account <a href="https://user.p0ntus.com/">here</a> with your email as the username and abcabc for the password. <b>FOR SECURITY, CHANGE YOUR PASSWORD ASAP.</b></p>
<p>I also suggest you check out our guides at <a href="https://mail.p0ntus.com/guides">mail.p0ntus.com/guides</a>.</p>
<p>You can also access Vaultwarden at <a href="https://vaultwarden.p0ntus.com/">vaultwarden.p0ntus.com</a>.</p>
<p>If you need any help or support, contact <a href="mailto:admin@p0ntus.com">admin@p0ntus.com</a>.</p>
<p>Your webmail can be accessed <a href="https://mail.p0ntus.com/SOGo">here</a>.</p>
</div>
<% } %>
2024-12-17 13:36:22 -05:00
<% if (request.status === 'Pending') { %>
<p>Your request is pending approval. This page will be updated when your request been approved or denied.</p>
<% } %>
<% if (request.status === 'Denied') { %>
<p>Your request has been denied.</p>
<p>If you believe this is an error, please contact <a href="mailto:admin@p0ntus.com">admin@p0ntus.com</a>.</p>
<p>Please ensure the username you selected only includes letters, numbers, and periods/dashes. Your request may also be declined if you do not provide a valid reason or response in your application.</p>
<p>You may resubmit another request if you feel you deserve an email, or have fixed issues with your application.</p>
<% } %>
<% } else { %>
<p>No request found for the provided email.</p>
<% } %>
</div>
<%- include('shards/footer') %>