- Complete working image generation app using Imagen 3 - PHP backend with Gemini API integration - Dark themed UI with prompt enhancement - Session management and logging system 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
36 lines
778 B
PHP
36 lines
778 B
PHP
<?php
|
|
session_start();
|
|
session_destroy();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Session Cleared</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Courier New', monospace;
|
|
background: #000;
|
|
color: #0f0;
|
|
padding: 50px;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: #0ff;
|
|
text-decoration: none;
|
|
border: 2px solid #0ff;
|
|
padding: 10px 20px;
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
}
|
|
a:hover {
|
|
background: #0ff;
|
|
color: #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>✅ Session Cleared!</h1>
|
|
<p>All session data has been cleared.</p>
|
|
<a href="index.php">Go to Main Page</a>
|
|
</body>
|
|
</html>
|