gosign commited on
Commit
c779555
·
verified ·
1 Parent(s): 36dd645

Upload home.html

Browse files
Files changed (1) hide show
  1. templates/home.html +56 -0
templates/home.html ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title><!DOCTYPE html>
6
+ <html lang="en">
7
+ <head>
8
+ <meta charset="UTF-8">
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
+ <title>ComfyUI API Interface</title>
11
+ <style>
12
+ body {
13
+ background-color: #f0f8ff; /* Light blue background */
14
+ font-family: Arial, sans-serif;
15
+ color: #333;
16
+ text-align: center;
17
+ padding: 50px;
18
+ }
19
+
20
+ h1 {
21
+ color: #ff6347; /* Tomato color for header */
22
+ font-size: 2.5em;
23
+ margin-bottom: 20px;
24
+ }
25
+
26
+ p {
27
+ font-size: 1.2em;
28
+ margin: 20px 0;
29
+ }
30
+
31
+ a {
32
+ text-decoration: none;
33
+ color: #fff;
34
+ background-color: #007bff; /* Bootstrap blue */
35
+ padding: 10px 20px;
36
+ border-radius: 5px;
37
+ transition: background-color 0.3s;
38
+ }
39
+
40
+ a:hover {
41
+ background-color: #0056b3; /* Darker blue on hover */
42
+ }
43
+ </style>
44
+ </head>
45
+ <body>
46
+ <h1>Welcome to ComfyUI API Interface!</h1>
47
+ <p>Use the API to generate images based on your prompts.</p>
48
+ <a href="/generate_image">Generate Image</a>
49
+ </body>
50
+ </html>
51
+ </title>
52
+ </head>
53
+ <body>
54
+
55
+ </body>
56
+ </html>