real / templates /View.html
irridileepkumar's picture
Upload 122 files
bd033f9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Real estate valuation</title>
<link href="static/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="static/css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default navbar-trans navbar-expand-lg fixed-top">
<div class="navbar-collapse collapse justify-content-center" id="navbarDefault">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link " href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('upload') }}">Upload Dataset</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="{{ url_for('View') }}">View Dataset</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('split') }}">Splitting</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Model Performance</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Prediction</a>
</li>
</ul>
</div>
<button type="button" class="btn btn-b-n navbar-toggle-box-collapse d-none d-md-block" data-toggle="collapse"
data-target="#navbarTogglerDemo01" aria-expanded="false">
</button>
</nav>
<div class="intro intro-carousel">
<div align="center" >
<!-- <div class="overlay overlay-a"></div>-->
<br><br><br><br><br> <h1>Real Estate Valuation Using Machine Learning </h1>
<div class="intro-content display-table" align="center">
<br><br><table id='mytable' class="table table-sm table-borderless mb-0" border="">
<thead class="thread-dark">
<tr>
<th style="color:black">S/N</th>
{% for c in col %}
<th style="color:black">{{ c }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in df %}
<tr>
<th scope="row" style="color:blue">{{ loop.index }}</th>
{% for r in row %}
<td style="color:blue">{{ r }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
<script src="static/js/main.js"></script>
</body>
</html>