image-gen / templates /index.html
BeveledCube's picture
Turned it into a flask API
ba11222
<!DOCTYPE html>
<html lang="en">
<head>
<title>AI API</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: rgb(50, 50, 50);
}
.img {
width: 40vh;
height: 40vh;
margin: 30px;
display: inline-block;
}
.video {
width: 40vh;
height: 40vh;
margin: 30px;
display: inline-block;
}
.text {
color: rgb(223, 223, 223);
}
</style>
</head>
<body>
<h1 class="text">Hello there!</h1>
<span class="text">For the API use a POST request</span>
</body>
</html>