Skip to content

Commit

Permalink
Merge pull request #1154 from Dipanita45/master
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
Niketkumardheeryan authored Oct 29, 2024
2 parents 2584e05 + 908f0ab commit 1c52cb1
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Handwritten character recognition/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,48 @@
<div class="container">
<div class="row">
<h2 align="center">Select a photo</h2>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f0f0;
color: #333;
}
.container {
background-color: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
padding: 30px;
margin-top: 50px;
}
h2 {
color: #2c3e50;
margin-bottom: 30px;
}
.btn-info {
background-color: #3498db;
border: none;
}
.btn-info:hover {
background-color: #2980b9;
}
.image-container {
margin-top: 20px;
margin-bottom: 20px;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.footer {
margin-top: 30px;
text-align: right;
font-style: italic;
color: #7f8c8d;
}
</style>

<p>
{% with messages = get_flashed_messages() %}
{% if messages %}
Expand Down

0 comments on commit 1c52cb1

Please sign in to comment.