<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloud Download</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1>Welcome to Cloud Download</h1>
<nav>
<a href="index.php">Home</a> |
<a href="admin.php">Admin Panel</a>
</nav>
</header>
<main>
<section>
<h2>Download Services</h2>
<p>Choose your download option:</p>
<ul>
<li>Torrent to Cloud Drive</li>
<li>YouTube Downloads</li>
<li>Instagram Stories Downloads</li>
</ul>
<p>More features coming soon...</p>
</section>
<section>
<h2>Start a Download</h2>
<p>Use the form below to start a download:</p>
<form method="POST" action="download.php">
<label for="torrent_url">Torrent URL:</label><br>
<input type="text" id="torrent_url" name="torrent_url" placeholder="Enter torrent URL"><br><br>
<label for="youtube_url">YouTube Video URL:</label><br>
<input type="text" id="youtube_url" name="youtube_url" placeholder="Enter YouTube video URL"><br><br>
<label for="instagram_url">Instagram Story URL:</label><br>
<input type="text" id="instagram_url" name="instagram_url" placeholder="Enter Instagram story URL"><br><br>
<input type="submit" value="Start Download">
</form>
</section>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>