Web-App / models /card /card.html
Mr-Vicky-01's picture
Upload 63 files
a1c6194 verified
raw
history blame contribute delete
No virus
1.73 kB
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="static/card.css?v=3">
<title>Cards Prediction</title>
</head>
<body>
<div class="header-container container">
<h1>Cards Prediction</h1>
</div>
<form id="uploadForm" action="/predict" method="post" enctype="multipart/form-data" class="container">
<div id="fileInputContainer">
<input type="file" name="file" id="fileInput" accept="image/*">
<label for="fileInput" id="fileInputLabel">
<i class="fas fa-cloud-upload-alt upload-icon"></i>
Drag & Drop or Click to Upload
</label>
</div>
<div id="imageContainer" class="container">
<img id="imagePreview">
</div>
<div id="predictionResult" class="container"></div>
<button type="submit" class="predict-btn" id="predictButton">
<span class="loading-icon" id="loadingIcon"></span>
Predict
</button>
</form>
<script src="static/card.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>