File size: 9,144 Bytes
c878ced
 
 
 
 
a170fd5
c878ced
 
 
 
 
09388a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9271a5e
09388a6
 
 
37b7add
09388a6
 
 
 
 
 
 
 
 
92bf7fc
fd0dd1f
 
92bf7fc
 
09388a6
 
 
 
 
 
c878ced
 
 
09388a6
a170fd5
09388a6
 
 
37b7add
25b116a
09388a6
 
 
25b116a
c878ced
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c1e0ac3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a947a56
c1e0ac3
 
 
a947a56
c1e0ac3
 
 
 
 
 
 
 
 
 
 
 
 
92bf7fc
fd0dd1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c1e0ac3
c878ced
f4299d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>AI Data Extractor</title>
    <link
      href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
      rel="stylesheet"
    />
    <style>
        body {
            background-color: #1c1c1e;
            font-family: "Poppins", sans-serif;
            color: #f5f5f7;
            margin: 0;
        }

        h1 {
            color: #e5e5e7;
            text-align: center;
            margin-bottom: 20px;
        }

        .container {
            margin-top: 70px;
        }

        .file-upload-section {
            background-color: #2c2c2e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .file-upload-section input[type="file"] {
            margin: 20px 0;
        }

        .file-upload-section input[type="submit"] {
            background-color: #e68a00;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .file-upload-section input[type="submit"]:hover {
            background-color: #e68a00;
        }

        .file-actions a {
            margin: 0 10px;
            text-decoration: none;
            color: #e68a00;
        }

        .file-actions a:hover {
            color: #e68a00;
        }

        .flash-message {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 5px;
            color: #333;
        }

        .alert {
            text-align: center;
            position: sticky;
            top: 0;
            right: 15%;
        }

        /* Loader styles */
        .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #e68a00;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 2s linear infinite;
            margin: 20px auto;
            display: none;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Top bar styles */
        .top-bar {
            background-color: #333;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar h2 {
            color: white;
        }

        /* Navigation tab styles */
        .tab {
            display: flex;
            gap: 10px;
        }

        .tab button {
            background-color: inherit;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 16px;
            transition: 0.3s;
            font-size: 17px;
            color: white;
        }

        .tab button:hover {
            background-color: #575757;
            cursor: pointer;
        }

        .tab button.active {
            background-color: #ee4410;
        }

        /* Tab content styles */
        .tabcontent {
            display: none;
            padding: 20px;
            margin-top: 70px;
        }

        .disabled {
            cursor: not-allowed !important;
            opacity: 0.6;/* Set cursor to not-allowed */
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .tab {
                flex-direction: column;
            }
        }
    </style>
  </head>
  <body>
   <div class="top-bar">
        <h2>AI Data Extractor</h2>
        <!-- Navigation Tabs -->
         <div class="tab">
            <button class="tablinks" onclick="openLink('https://webashalarforml-imagedataextractor2.hf.space/', this, '#ff4d00')">Visiting Card Data Extractor</button>
            <button class="tablinks active" onclick="openLink('https://webashalarforml-resumeextractor2.hf.space/', this, '#ff4d00')" id="defaultOpen">Resume Data Extractor</button>
      </div>
    </div>
   <div class="container">
      <h1>Resume Data Extractor</h1>
      <div class="file-upload-section">     

        <form
          id="fileUploadForm"
          action="{{ url_for('upload_and_process') }}"
          method="POST"
          enctype="multipart/form-data"
        >
          <input type="file" name="file" class="form-control" required />
          <input type="submit" value="Upload you Resume" class="btn btn-outline-primary" />
        </form>

        {% if session.get('uploaded_file') %}
        <p class="mt-4">
          Uploaded:
          <span class="text-danger">{{ session.get('uploaded_file') }}</span>
        </p>
        <div class="file-actions">
          <form action="{{ url_for('remove_file') }}" method="post">
            <button type="submit" class="btn btn-outline-danger">
              <i class="bi bi-trash"></i> Remove Uploaded File
            </button>
          </form>
        </div>
        {% endif %}
      </div>

      <div class="container">
         <!-- Loader -->
         <div class="loader" id="loader"></div>
      </div>

      {% with messages = get_flashed_messages() %} {% if messages %}
      <div class="alert alert-success mt-4" id="flash-message">
        {{ messages[0] }}
      </div>
      {% endif %} {% endwith %}
    </div>

    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
      <script>
        // Loader functionality
        document.getElementById('fileUploadForm').onsubmit = function() {
          document.getElementById('loader').style.display = 'block';
          
          // Disable the tab buttons and apply disabled class
          const buttons = document.querySelectorAll('.tab button');
          buttons.forEach(button => {
            button.setAttribute('disabled', 'true');
            button.classList.add('disabled'); // Add disabled class
          });
          
          // Show processing message
          const processingMessage = document.createElement('p');
          processingMessage.id = 'processing-message';
          processingMessage.textContent = 'Processing, please wait...';
          processingMessage.style.color = '#e68a00'; // Style as needed
          document.querySelector('.file-upload-section').appendChild(processingMessage);
        };
      
        // Flash message auto-hide
        setTimeout(function () {
          let flashMessage = document.getElementById("flash-message");
          if (flashMessage) {
            flashMessage.style.transition = "opacity 1s ease";
            flashMessage.style.opacity = 0;
            setTimeout(() => flashMessage.remove(), 1000);
          }
          
          // After processing is complete (You can adjust this based on your logic)
          const processingMessage = document.getElementById('processing-message');
          if (processingMessage) {
            processingMessage.remove(); // Remove the processing message
          }
          
          // Re-enable tab buttons and remove disabled class
          const buttons = document.querySelectorAll('.tab button');
          buttons.forEach(button => {
            button.removeAttribute('disabled');
            button.classList.remove('disabled'); // Remove disabled class
          });
        }, 3000); // Adjust timing based on your upload duration
      
        // Function to open links in the same tab
        function openLink(url, element) {
          window.location.href = url; // Redirects to the specified URL in the same tab
          
          // Remove "active" class from all buttons
          const buttons = document.querySelectorAll('.tab button');
          buttons.forEach(button => button.classList.remove('active'));
          
          // Add "active" class to the clicked button
          element.classList.add('active');
        }
        // Removing cookie once process completed
         function setCookie(name, value, days) {
            let expires = "";
            if (days) {
                const date = new Date();
                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
                expires = "; expires=" + date.toUTCString();
            }
            document.cookie = name + "=" + (value || "") + expires + "; path=/";
        }
        
        function deleteCookie(name) {
            document.cookie = name + '=; Max-Age=0; path=/;'; // Delete the cookie
        }
        
        // Set the cookie (you can comment this out after testing)
        setCookie('myCookie', 'myValue', 1); // Sets a cookie for demonstration
        
        // Automatically delete the cookie when the page is loaded or refreshed
        window.onload = function() {
            deleteCookie('myCookie'); // Replace 'myCookie' with your cookie name
        }

      </script>   
  </body>
</html>