Spaces:
Running
Running
File size: 3,310 Bytes
60a9633 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="static/style.css">
<title>MailCraft</title>
</head>
<body>
<div class="container">
<div class="nav">
<p class="name">MailCraft</p>
<p>|</p>
<p class="tagline">Craft Your Emails with AI Precision!</p>
</div>
<div class="main">
<center><h1 class="title">Unlock Seamless Email Excellence for Effortless Communication</h1></center>
<center><p class="subtitle">Craft polished emails 📧 effortlessly at MailCraft. Customize style, word limit, and more for impactful communication. Say goodbye to email stress and hello to simplicity! ✨</p></center>
<center>
<form class="form" method="post" action="/" autocomplete="off">
<div class="style-words">
<label for="style">Email Style*</label>
<select id="style" name="style" required>
<option>Professional</option>
<option>Personal</option>
<option>Marketing</option>
<option>Newsletter</option>
<option>Educational</option>
<option>Cold</option>
<option>Networking</option>
<option>Job Application</option>
<option>Feedback</option>
<option>Customer Support</option>
</select>
<label for="words">Word Limit</label>
<input type="number" name="words" id="words" max="1000" min="100" placeholder="100 to 1000">
</div>
<label for="topic">Mail Topic*</label>
<input type="textarea" id="topic" name="topic" placeholder="Write the topic of your mail" required>
<div class="sender-receiver">
<label for="sender">Sender</label>
<input type="text" id="sender" name="sender" placeholder="Name">
<label for="recipient">Recipient</label>
<input type="text" id="recipient" name="recipient" placeholder="Name">
</div>
<button type="submit" class="submit">Submit</button>
</form>
</center>
<center>
<div class="output" id="output">
<p>{{response}}</p>
</div>
</center>
</div>
</div>
<script>
var output = document.getElementById("output");
output.style.display = "{{display}}";
</script>
</body>
</html> |