WebashalarForML commited on
Commit
31c34f6
·
verified ·
1 Parent(s): 96d4e69

Update templates/upload.html

Browse files
Files changed (1) hide show
  1. templates/upload.html +266 -266
templates/upload.html CHANGED
@@ -1,266 +1,266 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>File Uploader</title>
7
- <link
8
- href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
9
- rel="stylesheet"
10
- />
11
- <link
12
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.5/font/bootstrap-icons.min.css"
13
- rel="stylesheet"
14
- />
15
- <link
16
- rel="stylesheet"
17
- href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
18
- />
19
- <style>
20
- body {
21
- background-color: #121212;
22
- font-family: "Poppins", sans-serif;
23
- color: #e0e0e0;
24
- margin: 0;
25
- padding: 0;
26
- }
27
- h1 {
28
- color: #ffffff;
29
- text-align: center;
30
- margin: 50px 0 20px;
31
- animation: fadeIn 1s ease;
32
- }
33
- .container {
34
- max-width: 600px;
35
- margin: 0 auto;
36
- }
37
- .file-upload-section {
38
- background-color: #1e1e1e;
39
- padding: 30px;
40
- border-radius: 15px;
41
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
42
- text-align: center;
43
- position: relative;
44
- animation: fadeInUp 1.5s ease;
45
- }
46
- .file-upload-section input[type="file"] {
47
- background-color: #2c2c2c;
48
- border: 1px solid #444;
49
- color: #e0e0e0;
50
- border-radius: 5px;
51
- width: 100%;
52
- margin-bottom: 20px;
53
- /* padding: 10px; */
54
- transition: background-color 0.3s ease;
55
- }
56
- .file-upload-section input[type="file"]:hover,
57
- .file-upload-section input[type="file"]:focus {
58
- background-color: #3a3a3a;
59
- outline: none;
60
- }
61
- .file-upload-section button {
62
- background-color: #4caf50;
63
- color: white;
64
- border: none;
65
- padding: 10px 20px;
66
- border-radius: 5px;
67
- font-size: 16px;
68
- cursor: pointer;
69
- transition: background-color 0.3s ease, transform 0.3s ease;
70
- display: flex;
71
- align-items: center;
72
- gap: 8px;
73
- border: 1px solid #4caf50;
74
- }
75
- .file-upload-section button:hover,
76
- .file-upload-section button:focus {
77
- background-color: transparent;
78
- border: 1px solid #4caf50;
79
- }
80
- .file-actions {
81
- margin-top: 20px;
82
- display: flex;
83
- justify-content: space-around;
84
- }
85
- .alert {
86
- text-align: center;
87
- }
88
- .instructions {
89
- margin-top: 10px;
90
- font-size: 14px;
91
- color: #b0b0b0;
92
- text-align: left;
93
- }
94
- .instructions strong {
95
- color: #ffffff;
96
- }
97
- @media (max-width: 768px) {
98
- .container {
99
- padding: 20px;
100
- }
101
- }
102
- .guide {
103
- background-color: #1e1e1e;
104
- padding: 20px;
105
- border-radius: 10px;
106
- margin-top: 20px;
107
- }
108
- .guide-button {
109
- position: fixed;
110
- top: 20px; /* Adjust the top margin as per your need */
111
- right: 20px; /* Adjust the right margin as per your need */
112
- z-index: 1000; /* Ensure the button is always on top */
113
- }
114
-
115
- .guide-button a {
116
- font-size: 16px;
117
- color: #17a2b8;
118
- padding: 5px 10px;
119
- border-radius: 5px;
120
- text-decoration: none;
121
- }
122
-
123
- .guide-button a:hover {
124
- background-color: #138496b9; /* Darken on hover */
125
- }
126
-
127
- .fas.fa-info-circle {
128
- margin-right: 5px;
129
- }
130
- </style>
131
- </head>
132
- <body>
133
- <!-- Guide Button -->
134
- <div class="guide-button">
135
- <a href="{{ url_for('guide') }}" class="btn">
136
- <i class="fas fa-info-circle"></i> Guide
137
- </a>
138
- </div>
139
-
140
- <div class="container">
141
- <h1>Upload Your Resume</h1>
142
- <p class="text-center text-secondary">
143
- Welcome! Please select a Resume to upload.
144
- </p>
145
-
146
- <div class="progress">
147
- <div
148
- class="progress-bar"
149
- role="progressbar"
150
- style="width: 10%"
151
- aria-valuenow="10"
152
- aria-valuemin="0"
153
- aria-valuemax="100"
154
- >
155
- Step 1 of 5
156
- </div>
157
- </div>
158
- <div class="file-upload-section">
159
- <form
160
- action="{{ url_for('upload_file') }}"
161
- method="POST"
162
- enctype="multipart/form-data"
163
- id="file-upload-form"
164
- >
165
- <input
166
- type="file"
167
- name="file"
168
- class="form-control"
169
- id="file-input"
170
- required
171
- />
172
- <button type="submit" class="btn btn-custom">
173
- <i class="bi bi-cloud-upload"></i> Upload & Extract Text
174
- </button>
175
- <div class="instructions mt-3">
176
- <p>
177
- <strong>Supported Formats:</strong> PDF, DOCX, RSF, ODT, PNG, JPG,
178
- JPEG
179
- </p>
180
- <p><strong>File Size Limit:</strong> 5MB</p>
181
- <p>
182
- Please ensure the file is correctly formatted before uploading.
183
- </p>
184
- </div>
185
- </form>
186
-
187
- {% if session.get('uploaded_file') %}
188
- <p class="mt-4">
189
- Uploaded:
190
- <span class="text-danger">{{ session.get('uploaded_file') }}</span>
191
- </p>
192
- <div class="file-actions">
193
- <form action="{{ url_for('remove_file') }}" method="post">
194
- <button type="submit" class="btn btn-outline-danger">
195
- <i class="bi bi-trash"></i> Remove Uploaded File
196
- </button>
197
- </form>
198
- </div>
199
- {% endif %}
200
- </div>
201
-
202
- {% with messages = get_flashed_messages() %} {% if messages %}
203
- <div class="alert alert-success mt-4" id="flash-message">
204
- {{ messages[0] }}
205
- </div>
206
- {% endif %} {% endwith %}
207
-
208
-
209
-
210
- <div class="guide">
211
- <h5>Instructions:</h5>
212
- <ol class="">
213
- <li>Select a file from your device.</li>
214
- <li>Click the "Upload & Extract Text" button.</li>
215
- <li>
216
- Once uploaded, you can view the extracted text and download it.
217
- </li>
218
- <li>
219
- If needed, remove the uploaded file using the "Remove Uploaded File"
220
- button.
221
- </li>
222
- </ol>
223
- </div>
224
- </div>
225
-
226
- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
227
-
228
- <script>
229
- document.querySelector("form").addEventListener("submit", function (e) {
230
- const fileInput = document.querySelector("#file-input");
231
- const file = fileInput.files[0];
232
- const allowedTypes = [
233
- "application/pdf",
234
- "application/msword",
235
- "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
236
- "image/png",
237
- "image/jpeg",
238
- "application/json",
239
- "application/vnd.oasis.opendocument.text",
240
- "text/plain",
241
- ];
242
- const maxSize = 5 * 1024 * 1024; // 5MB size limit
243
-
244
- if (!allowedTypes.includes(file.type)) {
245
- e.preventDefault();
246
- alert(
247
- "Only PDF, DOCX, RSF, ODT, PNG, JPG, JPEG, and JSON files are allowed."
248
- );
249
- } else if (file.size > maxSize) {
250
- e.preventDefault();
251
- alert("File size must be less than 5MB.");
252
- }
253
- });
254
-
255
- // Close flash messages after a timeout
256
- setTimeout(function () {
257
- let flashMessage = document.getElementById("flash-message");
258
- if (flashMessage) {
259
- flashMessage.style.transition = "opacity 1s ease";
260
- flashMessage.style.opacity = 0;
261
- setTimeout(() => flashMessage.remove(), 1000);
262
- }
263
- }, 3000);
264
- </script>
265
- </body>
266
- </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>File Uploader</title>
7
+ <link
8
+ href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
9
+ rel="stylesheet"
10
+ />
11
+ <link
12
+ href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.5/font/bootstrap-icons.min.css"
13
+ rel="stylesheet"
14
+ />
15
+ <link
16
+ rel="stylesheet"
17
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
18
+ />
19
+ <style>
20
+ body {
21
+ background-color: #121212;
22
+ font-family: "Poppins", sans-serif;
23
+ color: #e0e0e0;
24
+ margin: 0;
25
+ padding: 0;
26
+ }
27
+ h1 {
28
+ color: #ffffff;
29
+ text-align: center;
30
+ margin: 50px 0 20px;
31
+ animation: fadeIn 1s ease;
32
+ }
33
+ .container {
34
+ max-width: 600px;
35
+ margin: 0 auto;
36
+ }
37
+ .file-upload-section {
38
+ background-color: #1e1e1e;
39
+ padding: 30px;
40
+ border-radius: 15px;
41
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
42
+ text-align: center;
43
+ position: relative;
44
+ animation: fadeInUp 1.5s ease;
45
+ }
46
+ .file-upload-section input[type="file"] {
47
+ background-color: #2c2c2c;
48
+ border: 1px solid #444;
49
+ color: #e0e0e0;
50
+ border-radius: 5px;
51
+ width: 100%;
52
+ margin-bottom: 20px;
53
+ /* padding: 10px; */
54
+ transition: background-color 0.3s ease;
55
+ }
56
+ .file-upload-section input[type="file"]:hover,
57
+ .file-upload-section input[type="file"]:focus {
58
+ background-color: #3a3a3a;
59
+ outline: none;
60
+ }
61
+ .file-upload-section button {
62
+ background-color: #4caf50;
63
+ color: white;
64
+ border: none;
65
+ padding: 10px 20px;
66
+ border-radius: 5px;
67
+ font-size: 16px;
68
+ cursor: pointer;
69
+ transition: background-color 0.3s ease, transform 0.3s ease;
70
+ display: flex;
71
+ align-items: center;
72
+ gap: 8px;
73
+ border: 1px solid #4caf50;
74
+ }
75
+ .file-upload-section button:hover,
76
+ .file-upload-section button:focus {
77
+ background-color: transparent;
78
+ border: 1px solid #4caf50;
79
+ }
80
+ .file-actions {
81
+ margin-top: 20px;
82
+ display: flex;
83
+ justify-content: space-around;
84
+ }
85
+ .alert {
86
+ text-align: center;
87
+ }
88
+ .instructions {
89
+ margin-top: 10px;
90
+ font-size: 14px;
91
+ color: #b0b0b0;
92
+ text-align: left;
93
+ }
94
+ .instructions strong {
95
+ color: #ffffff;
96
+ }
97
+ @media (max-width: 768px) {
98
+ .container {
99
+ padding: 20px;
100
+ }
101
+ }
102
+ .guide {
103
+ background-color: #1e1e1e;
104
+ padding: 20px;
105
+ border-radius: 10px;
106
+ margin-top: 20px;
107
+ }
108
+ .guide-button {
109
+ position: fixed;
110
+ top: 20px; /* Adjust the top margin as per your need */
111
+ right: 20px; /* Adjust the right margin as per your need */
112
+ z-index: 1000; /* Ensure the button is always on top */
113
+ }
114
+
115
+ .guide-button a {
116
+ font-size: 16px;
117
+ color: #17a2b8;
118
+ padding: 5px 10px;
119
+ border-radius: 5px;
120
+ text-decoration: none;
121
+ }
122
+
123
+ .guide-button a:hover {
124
+ background-color: #138496b9; /* Darken on hover */
125
+ }
126
+
127
+ .fas.fa-info-circle {
128
+ margin-right: 5px;
129
+ }
130
+ </style>
131
+ </head>
132
+ <body>
133
+ <!-- Guide Button -->
134
+ <div class="guide-button">
135
+ <a href="{{ url_for('guide') }}" class="btn">
136
+ <i class="fas fa-info-circle"></i> Guide
137
+ </a>
138
+ </div>
139
+
140
+ <div class="container">
141
+ <h1>Upload Your Resume</h1>
142
+ <p class="text-center text-secondary">
143
+ Welcome! Please select a Resume to upload.
144
+ </p>
145
+
146
+ <div class="progress">
147
+ <div
148
+ class="progress-bar"
149
+ role="progressbar"
150
+ style="width: 10%"
151
+ aria-valuenow="10"
152
+ aria-valuemin="0"
153
+ aria-valuemax="100"
154
+ >
155
+ Step 1 of 5
156
+ </div>
157
+ </div>
158
+ <div class="file-upload-section">
159
+ <form
160
+ action="{{ url_for('upload_file') }}"
161
+ method="POST"
162
+ enctype="multipart/form-data"
163
+ id="file-upload-form"
164
+ >
165
+ <input
166
+ type="file"
167
+ name="file"
168
+ class="form-control"
169
+ id="file-input"
170
+ required
171
+ />
172
+ <button type="submit" class="btn btn-custom">
173
+ <i class="bi bi-cloud-upload"></i> Upload & Extract Text
174
+ </button>
175
+ <div class="instructions mt-3">
176
+ <p>
177
+ <strong>Supported Formats:</strong> PDF, DOCX, RSF, ODT, PNG, JPG,
178
+ JPEG
179
+ </p>
180
+ <p><strong>File Size Limit:</strong> 5MB</p>
181
+ <p>
182
+ Please ensure the file is correctly formatted before uploading.
183
+ </p>
184
+ </div>
185
+ </form>
186
+
187
+ {% if session.get('uploaded_file') %}
188
+ <p class="mt-4">
189
+ Uploaded:
190
+ <span class="text-danger">{{ session.get('uploaded_file') }}</span>
191
+ </p>
192
+ <div class="file-actions">
193
+ <form action="{{ url_for('upload_file') }}" method="post" enctype="multipart/form-data">
194
+ <button type="submit" class="btn btn-outline-danger">
195
+ <i class="bi bi-trash"></i> Remove Uploaded File
196
+ </button>
197
+ </form>
198
+ </div>
199
+ {% endif %}
200
+ </div>
201
+
202
+ {% with messages = get_flashed_messages() %} {% if messages %}
203
+ <div class="alert alert-success mt-4" id="flash-message">
204
+ {{ messages[0] }}
205
+ </div>
206
+ {% endif %} {% endwith %}
207
+
208
+
209
+
210
+ <div class="guide">
211
+ <h5>Instructions:</h5>
212
+ <ol class="">
213
+ <li>Select a file from your device.</li>
214
+ <li>Click the "Upload & Extract Text" button.</li>
215
+ <li>
216
+ Once uploaded, you can view the extracted text and download it.
217
+ </li>
218
+ <li>
219
+ If needed, remove the uploaded file using the "Remove Uploaded File"
220
+ button.
221
+ </li>
222
+ </ol>
223
+ </div>
224
+ </div>
225
+
226
+ <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
227
+
228
+ <script>
229
+ document.querySelector("form").addEventListener("submit", function (e) {
230
+ const fileInput = document.querySelector("#file-input");
231
+ const file = fileInput.files[0];
232
+ const allowedTypes = [
233
+ "application/pdf",
234
+ "application/msword",
235
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
236
+ "image/png",
237
+ "image/jpeg",
238
+ "application/json",
239
+ "application/vnd.oasis.opendocument.text",
240
+ "text/plain",
241
+ ];
242
+ const maxSize = 5 * 1024 * 1024; // 5MB size limit
243
+
244
+ if (!allowedTypes.includes(file.type)) {
245
+ e.preventDefault();
246
+ alert(
247
+ "Only PDF, DOCX, RSF, ODT, PNG, JPG, JPEG, and JSON files are allowed."
248
+ );
249
+ } else if (file.size > maxSize) {
250
+ e.preventDefault();
251
+ alert("File size must be less than 5MB.");
252
+ }
253
+ });
254
+
255
+ // Close flash messages after a timeout
256
+ setTimeout(function () {
257
+ let flashMessage = document.getElementById("flash-message");
258
+ if (flashMessage) {
259
+ flashMessage.style.transition = "opacity 1s ease";
260
+ flashMessage.style.opacity = 0;
261
+ setTimeout(() => flashMessage.remove(), 1000);
262
+ }
263
+ }, 3000);
264
+ </script>
265
+ </body>
266
+ </html>