Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms committed Feb 13, 2024
1 parent f66aab0 commit 814bf65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ a {
padding: 10px;
margin: 10px auto;
background-color: var(--button-color);
color: #fff;
color: var(--text-color);
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
Expand Down
6 changes: 3 additions & 3 deletions templates/image-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</head>
<body>
<div class="content">
<h1>SDXL-Turbo Model Card</h1>
<h1>Image-Generator</h1>
<form action="/text_to_image" method="post">
<label for="prompt">Enter a text prompt:</label>
<input type="text" name="prompt" required>
Expand All @@ -23,7 +23,7 @@ <h1>SDXL-Turbo Model Card</h1>
</form>

<div id="imagecontainer">
<h1>Image Generation</h1>
<h1>Generated Image:</h1>
{% if result_image %}
<h2>Result Image:</h2>
<img src="{{ url_for('static', filename='generated_images/' + result_image) }}" alt="Result Image">
Expand All @@ -32,7 +32,7 @@ <h2>Result Image:</h2>
<a href="{{ url_for('home') }}">Go to SynthWomb</a>
<br>
<div align="center">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb07.png" alt="Synth Womb Logo" width="200">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb08.png" alt="Synth Womb Logo" width="200">
</div>
</div>
<footer id="dynamicFooter"></footer>
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1>Welcome to SynthWomb</h1>
<br>
<br>
<div align="center">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb07.png" alt="Synth Womb Logo" width="200">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb08.png" alt="Synth Womb Logo" width="200">
</div>
</div>
<footer id="dynamicFooter"></footer>
Expand Down
2 changes: 1 addition & 1 deletion templates/synthia-gpt.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>SynthiaGPT</h1>
<a href="{{ url_for('home') }}">Go to SynthWomb</a>
<br>
<div align="center">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb07.png" alt="Synth Womb Logo" width="200">
<img src="https://github.com/SynthWomb/synth.womb/raw/main/logos/synthwomb08.png" alt="Synth Womb Logo" width="200">
</div>
</div>

Expand Down

0 comments on commit 814bf65

Please sign in to comment.