Kumi
81ac90c68e
Introduced a new web service, MyIP.Coffee, for displaying client IP addresses. This update includes: - MIT License addition for open-source usage. - README for setup instructions and project overview. - PHP script and nginx configs to support IP address retrieval. - Basic website structure with HTML, CSS, and JavaScript to display IPv4 and IPv6 addresses on load. This service aims to provide a user-friendly platform for clients to easily find their public IP addresses, supporting both IPv4 and IPv6 with a focus on simplicity and efficiency. Future improvements may include enhanced IP detection and custom user settings.
57 lines
No EOL
2.2 KiB
HTML
57 lines
No EOL
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome to MyIP.Coffee</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<h1>MyIP.Coffee</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#ipv4">IPs</a></li>
|
|
<li><a href="#about">About</a></li>
|
|
<li><a href="#api">API</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h2>Discover Your IP Address Instantly</h2>
|
|
<p>Fast, reliable, and coffee-powered. Your public IP addresses displayed below:</p>
|
|
</div>
|
|
</section>
|
|
<main>
|
|
<div class="container">
|
|
<section class="ip-display">
|
|
<div class="ip-card"">
|
|
<h3>IPv4 Address</h3>
|
|
<p id="ipv4">Loading...</p>
|
|
</div>
|
|
<div class="ip-card">
|
|
<h3>IPv6 Address</h3>
|
|
<p id="ipv6">Loading...</p>
|
|
</div>
|
|
</section>
|
|
<section id="about">
|
|
<h2>About MyIP.Coffee</h2>
|
|
<p>MyIP.Coffee was brewed with the idea of providing internet users a quick way to check their public IPv4 and IPv6 addresses. Whether you're troubleshooting network issues, setting up a server, or just curious, our site serves up your IP addresses without any fuss or frills.</p>
|
|
</section>
|
|
<section id="api">
|
|
<h2>Programmatical use</h2>
|
|
<p>You can get your current IP addresses from <code>https://ipv4.myip.coffee</code> and <code>https://ipv6.myip.coffee</code>.</p>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2024 Private.coffee | <a href="https://private.coffee/privacy.html">Privacy Policy</a> | <a href="https://private.coffee/legal.html">Legal Notice</a> | <a href="https://git.private.coffee/PrivateCoffee/myip.coffee">Git</a></p>
|
|
</div>
|
|
</footer>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |