-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
23 lines (20 loc) · 1.14 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voidem API</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="media/voidemAPI.png">
</head>
<body class="bg-gray-100 flex flex-col items-center justify-center h-screen">
<div class="text-center">
<h1 class="text-6xl font-bold text-gray-900 mb-4">Voidem API</h1>
<p class="text-lg text-gray-700 mb-8">Custom APIs used on my projects</p>
<a href="/register.php" class="bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Register</a>
<a href="/login.php" class="bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Login</a>
<br></br>
<a href="https://apidocs.voidem.com/" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Documentation</a>
</div>
</body>
</html>