3

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
{% include "head.html" %}
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #f0f0f0, #dcdcdc);
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
margin-top: 20px;
transition: box-shadow 0.3s ease;
}
.btn-lg {
padding: 12px 24px;
background: linear-gradient(to right, #007bff, #0056b3);
color: #fff;
border: none;
border-radius: 5px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-lg:hover {
background: linear-gradient(to right, #0056b3, #004899);
}
h3 {
color: #007bff;
text-align: center;
}
img.img-thumbnail {
border: 2px solid #ddd;
border-radius: 5px;
max-width: 100%;
height: auto;
}
.col-md-6 {
text-align: center;
}
</style>
</head>
<body>
{% include "navbar.html" %}

<section class="py-5">
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="container">
<h3 style="color : black;">Training Image</h3>
<hr>
<img src="{{ url_for('vidfeed_dataset', nbr=prs) }}"
class="img-thumbnail">
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6 offset-md-3">
<a class="btn btn-lg btn-block"
href="{{ url_for('train_classifier', nbr=prs) }}">Training</a>
</div>
</div>
</div>
</section>
</body>
</html>

You might also like