Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>ComfyUI API Interface</title> | |
<style> | |
body { | |
background-color: #f0f8ff; /* Light blue background */ | |
font-family: Arial, sans-serif; | |
color: #333; | |
text-align: center; | |
padding: 50px; | |
} | |
h1 { | |
color: #ee7202; /* Orange color for header */ | |
font-size: 2.5em; | |
margin-bottom: 20px; | |
} | |
p { | |
font-size: 1.2em; | |
margin: 20px 0; | |
} | |
a { | |
text-decoration: none; | |
color: #fff; | |
background-color: #007bff; /* Bootstrap blue */ | |
padding: 10px 20px; | |
border-radius: 5px; | |
transition: background-color 0.3s; | |
} | |
a:hover { | |
background-color: #0056b3; /* Darker blue on hover */ | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Welcome to ComfyUI API Interface!</h1> | |
<p>Use the API to generate images based on your prompts.</p> | |
<a href="/generate_image" target="_blank">Generate Image / Video</a> | |
</body> | |
</html> | |
</title> | |
</head> | |
<body> | |
</body> | |
</html> |