final app with css
This commit is contained in:
@ -4,15 +4,24 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Upload File</title>
|
||||
<link rel="stylesheet" href="../static/css/style.css">
|
||||
<link rel="icon" href="../static/icon.png">
|
||||
</head>
|
||||
<body>
|
||||
<div class="top-left-logo">
|
||||
<img src="../static/App.png" alt="Logo">
|
||||
<h5> <strong>SAR</strong> Link </h5>
|
||||
</div>
|
||||
<h1>📬 Mail Tracking Lookup System</h1>
|
||||
<h2>Upload Excel File</h2>
|
||||
<form action="/" method="post" enctype="multipart/form-data">
|
||||
<label for="file">Choose file:</label>
|
||||
<div class="upload">
|
||||
<form class="container" action="/" method="post" enctype="multipart/form-data">
|
||||
|
||||
<input type="file" name="file" id="file" required>
|
||||
<br><br>
|
||||
<button type="submit">Upload</button>
|
||||
<button class="upload" type="submit">Upload</button>
|
||||
</form>
|
||||
</div>
|
||||
{% if error %}
|
||||
<p style="color: red;">{{ error }}</p>
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user