gefiwek187's picture
Update templates/index.html
d4b5b43 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wattpad Story Generator</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<div class="container">
<header class="animate-header">
<div class="logo-container">
<i class="fas fa-book-open"></i>
</div>
<h1>Wattpad Story Generator</h1>
<p>This is just an fun project</p>
</header>
<main>
<div class="input-section">
<div class="input-wrapper">
<i class="fas fa-pencil-alt input-icon"></i>
<input type="text" id="topic" placeholder="Enter your story topic..." required>
</div>
<button id="generate-btn">
<span class="btn-text">Generate Story</span>
<i class="fas fa-magic"></i>
</button>
</div>
<div class="loading-spinner" id="loading">
<div class="spinner"></div>
<p>Crafting your story with creativity...</p>
<div class="typing-indicator">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="story-container" id="story-container">
<div class="story-header">
<h2 id="story-title"></h2>
<div class="story-meta">
<span class="reads"><i class="fas fa-eye"></i> <span class="count">0</span> reads</span>
<span class="votes"><i class="fas fa-heart"></i> <span class="count">0</span> votes</span>
<span class="comments"><i class="fas fa-comment"></i> <span class="count">0</span> comments</span>
</div>
</div>
<div class="story-content" id="story-content"></div>
<div class="story-actions">
<button class="action-btn vote-btn">
<i class="fas fa-heart"></i> Vote
</button>
<button class="action-btn share-btn">
<i class="fas fa-share"></i> Share
</button>
<button class="action-btn comment-btn">
<i class="fas fa-comment"></i> Comment
</button>
</div>
</div>
</main>
<footer>
<p>Created with <i class="fas fa-heart pulse"></i> for Wattpad fans</p>
</footer>
</div>
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>