34540-vm/admin.php
Flatlogic Bot 24c0e7b2b3 dfg
2025-10-01 07:01:16 +00:00

42 lines
2.0 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Panel</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h3>Admin Panel</h3>
</div>
<div class="card-body">
<h5 class="card-title">Logo Management</h5>
<p class="card-text">Upload a new logo for the site. The current logo will be replaced. The file should be a PNG, JPG, or GIF.</p>
<?php if (isset($_GET['success'])): ?>
<div class="alert alert-success">Logo uploaded successfully!</div>
<?php elseif (isset($_GET['error'])): ?>
<div class="alert alert-danger">Error uploading logo: <?php echo htmlspecialchars($_GET['error']); ?></div>
<?php endif; ?>
<form action="upload.php" method="post" enctype="multipart/form-data">
<div class="mb-3">
<label for="logoFile" class="form-label">Select image:</label>
<input class="form-control" type="file" name="logoFile" id="logoFile" required>
</div>
<button type="submit" class="btn btn-primary">Upload Logo</button>
</form>
</div>
<div class="card-footer text-center">
<a href="/" class="btn btn-secondary">Back to Home</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>