File size: 3,116 Bytes
5f6d9ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d4b5b43
5f6d9ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>