Spaces:
Sleeping
Sleeping
File size: 2,821 Bytes
a4269e8 24b4b92 a4269e8 24b4b92 a4269e8 1d764fb 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 114 |
<!-- <!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>
|