mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-14 00:27:03 +02:00
105 lines
No EOL
4.9 KiB
Twig
105 lines
No EOL
4.9 KiB
Twig
<!doctype html>
|
|
<html lang="en" class="h-100">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Namingo Registry control panel.">
|
|
<meta name="author" content="Taras Kondratyuk">
|
|
<title>Namingo Registry</title>
|
|
{% include 'partials/css.twig' %}
|
|
<style>
|
|
.navbar-toggler, .navbar-toggler-icon {
|
|
color: #d1d1d1 !important;
|
|
text-decoration: none;
|
|
}
|
|
.nav-link {
|
|
color: #d1d1d1 !important;
|
|
text-decoration: none;
|
|
transition: 0.3s;
|
|
}
|
|
.nav-link:hover {
|
|
color: #ffffff !important;
|
|
}
|
|
ul.custom-bullet {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
}
|
|
ul.custom-bullet li::before {
|
|
content: "•";
|
|
margin-right: 10px;
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="d-flex flex-column h-100">
|
|
<header>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="."><img src="static/logo.svg" width="100" /></a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbar">
|
|
<ul class="navbar-nav">
|
|
{% if auth.isLogin %}
|
|
<li class="nav-item">
|
|
<a {{ is_current_url('home') ? 'class="nav-link active" aria-current="page"' : 'class="nav-link"' }} href="{{route('home')}}">
|
|
Dashboard
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a {{ is_current_url('logout') ? 'class="nav-link active" aria-current="page"' : 'class="nav-link"' }} href="{{route('logout')}}">
|
|
Logout
|
|
</a>
|
|
</li>
|
|
{% else %}
|
|
<li class="nav-item">
|
|
<a {{ is_current_url('login') ? 'class="nav-link active" aria-current="page"' : 'class="nav-link"' }} href="{{route('login')}}">
|
|
Login
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="https://{{ whois_server }}" target="_blank">
|
|
WHOIS
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ rdap_server }}" target="_blank">
|
|
RDAP
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="mailto:{{ email }}">
|
|
Support Team
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<div class="p-5 rounded-3 bg-light text-center">
|
|
<div class="container-fluid">
|
|
<h1 class="display-4 fw-bold">Welcome to Your Registry Panel</h1>
|
|
<p class="display-6 lead"><em>Access and manage your domain-related services here.</em></p>
|
|
<p class="lead">To get started:</p>
|
|
<ul class="custom-bullet">
|
|
<li>{% if auth.isLogin %}<a href="{{route('home')}}"><strong>Open panel</strong></a>{% else %}<a href="{{route('login')}}"><strong>Log in</strong></a>{% endif %} to access your registrar dashboard and manage domains.</li>
|
|
<li>Access our <a href="https://{{ whois_server }}" target="_blank"><strong>WHOIS</strong></a> and <a href="{{ rdap_server }}" target="_blank"><strong>RDAP</strong></a> services for domain information lookup.</li>
|
|
<li>Contact our <a href="mailto:{{ email }}"><strong>Support Team</strong></a> for assistance, guidance, FAQs, and further support needs.</li>
|
|
<li>Interested in partnering with us? <a href="#"><strong>Apply</strong></a> to become an official registrar.</li>
|
|
</ul>
|
|
<code>Personalize this template to fit the unique needs and branding of your registry by editing `resources/views/index.twig`</code>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="footer bg-dark mt-auto py-3">
|
|
<div class="container">
|
|
<span class="text-muted">© {{ 'now' | date('Y') }} <strong>{{ company_name }}</strong>. All rights reserved.</span>
|
|
</div>
|
|
</footer>
|
|
{% include 'partials/js.twig' %}
|
|
</body>
|
|
</html> |