create register page
This commit is contained in:
parent
791e005127
commit
8e83af8c61
62
src/register.html
Normal file
62
src/register.html
Normal file
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Register - 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: 'Playfair Display', serif;
|
||||
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>Register</h1>
|
||||
<h3>Registration is done on Telegram</h3>
|
||||
<i>Click the button below to register</i>
|
||||
<hr>
|
||||
<div class="text-start">
|
||||
<a href="https://t.me/ihatearchbtw420" class="btn btn-primary">
|
||||
<img src="https://telegram.org/img/t_logo.png" alt="Telegram" style="width: 20px; height: 20px; margin-right: 10px;">
|
||||
Register on Telegram
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user