mirror of
https://github.com/32Bites/LetsGet
synced 2026-01-16 23:04:46 -05:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" style="width: 300px;">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="tailwind.css">
|
|
<title>Let's Get!</title>
|
|
</head>
|
|
|
|
<body class="bg-gray-800" style="width: 300px;">
|
|
<div class="p-5">
|
|
<h1 class="font-bold text-2xl text-blue-500 text-center mb-5">
|
|
Let's Get!
|
|
</h1>
|
|
<div class="flex items-center">
|
|
<input type="checkbox" class="checked:bg-blue-800 h-6 w-6" id="enabled">
|
|
<p class="ml-2 text-gray-200 font-semibold text-lg">Enabled</p>
|
|
</div>
|
|
<div class="text-blue-200 mt-6 text-center text-sm">
|
|
<p>
|
|
Developed by <a href="https://32bites.party/" class="text-blue-500 font-semibold" id="my_page">Noah Shanaberger</a>.
|
|
</p>
|
|
<p id="version"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
|
|
</html> |