SurajSingh's picture
deployment
a4269e8
<!-- <!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>