Post_finder/templates/search.html

34 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2024-12-04 13:39:09 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Tracking</title>
2024-12-09 15:00:24 +05:00
<link rel="stylesheet" href="../static/css/style.css">
<link rel="icon" href="../static/icon.png">
2024-12-04 13:39:09 +05:00
</head>
<body>
2025-01-30 16:16:17 +05:00
<div class="top-left-logo">
<a href="{{ url_for('upload_file') }}"> <img src="../static/App.png" alt="Logo"> </a>
<h5> <strong>SAR</strong> Link </h5>
</div>
2024-12-09 15:00:24 +05:00
<h1>📬 Mail Tracking Lookup System</h1>
2024-12-04 13:39:09 +05:00
<h2>Search Tracking Number</h2>
2024-12-09 15:00:24 +05:00
<div class="con">
<p class="up_file"><strong class="strong">Uploaded File:</strong> {{ uploaded_file_name }}</p>
<form class="tracking_number" action="/search" method="post">
<label class="search" for="tracking_no"> <strong>Enter Tracking No:</strong></label>
2024-12-04 13:39:09 +05:00
<input type="text" name="tracking_no" id="tracking_no" required>
<br><br>
2024-12-09 15:00:24 +05:00
<button class="search_btn" type="submit">Search</button>
2024-12-04 13:39:09 +05:00
</form>
2024-12-09 15:00:24 +05:00
</div>
2024-12-04 13:39:09 +05:00
<hr>
2024-12-09 15:00:24 +05:00
<!-- Include the result.html file -->
{% include 'result.html' %}
2024-12-04 13:39:09 +05:00
</body>
</html>