17 lines
626 B
HTML
17 lines
626 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Loan Prediction</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container home-container">
|
|
<h1>Welcome to the Loan Approval Prediction API</h1>
|
|
<p>This is a machine learning model that predicts loan approval based on input data. Navigate to the <strong>Predict</strong> page to make a prediction.</p>
|
|
<a href="/predict" class="button">Go to Prediction Page</a>
|
|
</div>
|
|
</body>
|
|
</html>
|