File size: 2,801 Bytes
a4269e8
24b4b92
 
 
 
 
 
 
 
 
 
 
 
 
06f5664
24b4b92
 
 
 
 
 
 
06f5664
24b4b92
 
 
 
 
 
 
 
a4269e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24b4b92
a4269e8
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!-- <!DOCTYPE html>
<html lang="en">
<head>
    <title>Index</title>
</head>
<body>
    <div>
        <h1 style="background-color:LightGray;">
            <center>Email Subject Line Generator </center>
        </h1>
    </div>
    <div>
        <fieldset>
        <ul>
            <li>
            <br>
            <form action="/subject_generation/" enctype="multipart/form-data" method="post">
                <span style="font-weight:bold;font-family:sans-serif">Enter Email:</span> <br><br>
				<textarea name="paragraphInput" rows="5" cols="100"></textarea>
                <br><br><br><br>
                <button type="submit">Generate Subject</button>
            </form>
            </li>
            <br><br>
            <form action="/" method="get">
                <button type="submit">Home</button>
            </form>
        </ul>
        </fieldset>
    </div>
</body>
</html> -->

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Email Subject Line Generator</title>
    <style>
        body {
            font-family: sans-serif;
            margin: 0;
            padding: 30px;
            text-align: center;
            background-color: #f5f5f5; /* Light gray background */
        }

        h1 {
            font-size: 36px;
            color: #333;
            margin-bottom: 30px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 15px;
        }

        fieldset {
            border: none;
            padding: 0;
            margin: 0;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        li {
            margin-bottom: 20px;
        }

        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            resize: none; /* Prevent resizing */
        }

        button {
            background-color: #4CAF50; /* Green background */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        button:hover {
            background-color: #3e8e41; /* Darker green on hover */
        }
    </style>
</head>
<body>
    <h1>Email Subject Line Generator</h1>

    <form action="/subject_generation/" enctype="multipart/form-data" method="post">
        <label for="paragraphInput" style="font-weight: bold;">Enter Email:</label>
        <br><br>
        <textarea id="paragraphInput" name="paragraphInput" rows="5"></textarea>
        <br><br>
        <button type="submit">Generate Subject</button>
    </form>

    <br><br>
    <form action="/" method="get">
        <button type="submit">Home</button>
    </form>
</body>
</html>