62 lines
2.0 KiB
HTML
62 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>p0ntus mail</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Playfair Display', serif;
|
|
background-color: #fdf6e3;
|
|
color: #333;
|
|
padding: 2rem;
|
|
}
|
|
h1 {
|
|
font-weight: bold;
|
|
font-size: 3rem;
|
|
}
|
|
h3 {
|
|
color: #7d7d7d;
|
|
font-weight: 300;
|
|
}
|
|
i {
|
|
font-family: 'Great Vibes', cursive;
|
|
font-size: 1.5rem;
|
|
display: block;
|
|
margin-top: 1rem;
|
|
color: #555;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.text-start {
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>p0ntus mail.</h1>
|
|
<h3>simple, mindful, secure email.</h3>
|
|
<i>Where can I direct your request?</i>
|
|
<hr>
|
|
<div class="text-start">
|
|
<p><i>If you are a current user</i></p>
|
|
<a href="/webmail" class="btn bg-dark text-white">Webmail</a>
|
|
<hr>
|
|
<p><i>If you aren't a current user</i></p>
|
|
<a href="/register" class="btn bg-dark text-white">Register</a>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |