SurajSingh's picture
Update app/templates/index.html
1d764fb verified
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>Index</title>
<style>
/* Add a style block for custom CSS */
.button-container {
text-align: center; /* Center the buttons */
}
.button-container form {
display: inline-block; /* Display forms (buttons) in a line */
margin: 0 10px; /* Add margin between buttons for spacing */
}
</style>
</head>
<body>
<div>
<h1 style="background-color:LightGray;">
<center>AI Chat Bot</center>
</h1>
</div>
<div>
<fieldset>
<ul>
<div>
<h2 style="background-color:white;">
<center>Select Task</center>
</h2>
</div>
<br><br><br>
<div class="button-container">
<form action="{{ url_for('email_input_root') }}"><button>Email Subject Generator</button></form>
<form ><button>AI ML Question Answering Chatbot</button></form>
</div>
<br>
</ul>
</fieldset>
</div>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>AI Chatbot</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
text-align: center;
background-color: #f5f5f5; /* Light gray background */
}
h1 {
font-size: 36px;
color: #333;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
}
h2 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
.button-container {
margin: 40px auto; /* Center buttons with spacing */
}
.button-container form {
display: inline-block;
margin: 0 10px;
}
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>AI Chat Bot</h1>
<h2>Select Task</h2>
<div class="button-container">
<form action="{{ url_for('email_input_root') }}">
<button>Email Subject Generator</button>
</form>
<form action="{{ url_for('question_input_root') }}">
<button>AI ML Question Answering Chatbot</button>
</form>
</div>
</body>
</html>