WebashalarForML commited on
Commit
a41be00
·
verified ·
1 Parent(s): 5612af2

Update templates/create_db.html

Browse files
Files changed (1) hide show
  1. templates/create_db.html +74 -47
templates/create_db.html CHANGED
@@ -2,7 +2,6 @@
2
 
3
  {% block content %}
4
  <style>
5
- /* Ensure the body takes full height for proper layout */
6
  html, body {
7
  height: 100%;
8
  margin: 0;
@@ -11,8 +10,8 @@
11
  .container {
12
  display: flex;
13
  flex-direction: column;
14
- height: 50vh; /* Full height of the viewport */
15
- overflow: hidden; /* Prevent extra scrollbars */
16
  }
17
 
18
  .card {
@@ -20,9 +19,9 @@
20
  background-color: #2c2c3e;
21
  color: #f5f5f5;
22
  border: none;
23
- width: 50%; /* Centered and appropriately sized */
24
- max-height: calc(50vh - 50px); /* Adjust to fit within view */
25
- overflow-y: auto; /* Add scrolling if content overflows */
26
  }
27
 
28
  .card-header {
@@ -30,14 +29,9 @@
30
  border-bottom: 2px solid #444;
31
  padding: 1rem;
32
  text-align: center;
33
- position: sticky; /* Keeps header fixed */
34
  top: 0;
35
- z-index: 1000; /* Ensures it stays above scrollable content */
36
- }
37
-
38
- .text-muted {
39
- --bs-text-opacity: 1;
40
- color: rgb(121 136 151 / 75%) !important;
41
  }
42
 
43
  .form-label {
@@ -64,7 +58,6 @@
64
  display: flex;
65
  justify-content: center;
66
  align-items: center;
67
- position: relative;
68
  }
69
 
70
  .btn-primary:hover {
@@ -72,33 +65,42 @@
72
  border-color: #3838e8;
73
  }
74
 
75
- /* Loader on the button */
76
- .button-spinner {
77
- display: none; /* Hidden by default */
78
- width: 20px;
79
- height: 20px;
80
- border: 3px solid #f3f3f3;
81
- border-top: 3px solid #ffffff;
82
- border-radius: 50%;
83
- animation: spin 1s linear infinite;
84
- margin-left: 10px; /* Space between button text and loader */
 
 
 
 
 
 
 
 
 
 
85
  }
86
 
87
- .btn-loading .button-spinner {
88
- display: inline-block; /* Show spinner when loading */
 
89
  }
90
 
91
- @keyframes spin {
92
- 0% {
93
- transform: rotate(0deg);
94
- }
95
- 100% {
96
- transform: rotate(360deg);
97
- }
98
  }
99
 
100
- .btn-loading .btn-text {
101
- opacity: 0.5; /* Dim button text when loading */
 
 
 
102
  }
103
  </style>
104
 
@@ -114,34 +116,59 @@
114
  <label for="db_name" class="form-label">Database Name</label>
115
  <input type="text" id="db_name" name="db_name" class="form-control" placeholder="Enter database name" required>
116
  </div>
117
-
 
 
 
 
 
 
118
  <!-- Folder Upload Input -->
119
- <div class="form-group mt-3">
120
  <label for="folder" class="form-label">Upload Folder</label>
121
- <input type="file" id="folder" name="folder" class="form-control" webkitdirectory directory multiple required>
122
- <small class="text-muted">Note: You can upload folder having your documents.</small>
 
 
 
 
 
 
 
123
  </div>
124
-
125
  <!-- Submit Button -->
126
- <div class="mt-4 text-center">
127
  <button type="submit" class="btn btn-primary px-5">
128
  <span class="btn-text">Create</span>
129
  <div class="button-spinner"></div>
130
  </button>
131
  </div>
 
132
  </form>
133
  </div>
134
  </div>
135
  </div>
136
 
137
  <script>
138
- // Show loader on button click
139
- const form = document.getElementById('db-form');
140
- const submitButton = document.querySelector('.btn-primary');
 
 
 
 
 
 
 
 
 
141
 
142
- form.addEventListener('submit', function (event) {
143
- submitButton.classList.add('btn-loading'); // Add loading class
144
- submitButton.disabled = true; // Disable button to prevent multiple clicks
 
 
145
  });
146
  </script>
147
 
 
2
 
3
  {% block content %}
4
  <style>
 
5
  html, body {
6
  height: 100%;
7
  margin: 0;
 
10
  .container {
11
  display: flex;
12
  flex-direction: column;
13
+ height: 50vh;
14
+ overflow: hidden;
15
  }
16
 
17
  .card {
 
19
  background-color: #2c2c3e;
20
  color: #f5f5f5;
21
  border: none;
22
+ width: 50%;
23
+ max-height: calc(50vh - 50px);
24
+ overflow-y: auto;
25
  }
26
 
27
  .card-header {
 
29
  border-bottom: 2px solid #444;
30
  padding: 1rem;
31
  text-align: center;
32
+ position: sticky;
33
  top: 0;
34
+ z-index: 1000;
 
 
 
 
 
35
  }
36
 
37
  .form-label {
 
58
  display: flex;
59
  justify-content: center;
60
  align-items: center;
 
61
  }
62
 
63
  .btn-primary:hover {
 
65
  border-color: #3838e8;
66
  }
67
 
68
+ .toggle-switch {
69
+ margin: 1rem 0;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ }
74
+
75
+ .toggle-switch input {
76
+ display: none;
77
+ }
78
+
79
+ .toggle-label {
80
+ background-color: #444;
81
+ color: #cfcfcf;
82
+ padding: 0.5rem 1.5rem;
83
+ border: 1px solid #555;
84
+ cursor: pointer;
85
+ margin-right: 1rem;
86
+ text-align: center;
87
+ border-radius: 4px;
88
  }
89
 
90
+ .toggle-label.active {
91
+ background-color: #4c4cff;
92
+ color: #fff;
93
  }
94
 
95
+ .hidden {
96
+ display: none;
 
 
 
 
 
97
  }
98
 
99
+ .text-center.d-flex {
100
+ display: flex;
101
+ justify-content: center;
102
+ align-items: center;
103
+ height: 100px; /* Optional: Add height if needed to ensure vertical alignment */
104
  }
105
  </style>
106
 
 
116
  <label for="db_name" class="form-label">Database Name</label>
117
  <input type="text" id="db_name" name="db_name" class="form-control" placeholder="Enter database name" required>
118
  </div>
119
+
120
+ <!-- Toggle Upload Mode -->
121
+ <div class="toggle-switch">
122
+ <label class="toggle-label active" id="folder-label" for="upload-folder">Upload Folder</label>
123
+ <label class="toggle-label" id="file-label" for="upload-file">Upload Files</label>
124
+ </div>
125
+
126
  <!-- Folder Upload Input -->
127
+ <div id="folder-upload" class="form-group mt-3">
128
  <label for="folder" class="form-label">Upload Folder</label>
129
+ <input type="file" id="folder" name="folder" class="form-control" webkitdirectory directory multiple>
130
+ <small class="text-muted">Note: You can upload a folder containing multiple files.</small>
131
+ </div>
132
+
133
+ <!-- Single File Upload Input -->
134
+ <div id="file-upload" class="form-group mt-3 hidden">
135
+ <label for="file" class="form-label">Upload Files</label>
136
+ <input type="file" id="file" name="file" class="form-control" multiple>
137
+ <small class="text-muted">Note: You can upload one or more files.</small>
138
  </div>
139
+
140
  <!-- Submit Button -->
141
+ <div class="mt-4 text-center d-flex justify-content-center align-items-center">
142
  <button type="submit" class="btn btn-primary px-5">
143
  <span class="btn-text">Create</span>
144
  <div class="button-spinner"></div>
145
  </button>
146
  </div>
147
+
148
  </form>
149
  </div>
150
  </div>
151
  </div>
152
 
153
  <script>
154
+ const folderLabel = document.getElementById('folder-label');
155
+ const fileLabel = document.getElementById('file-label');
156
+ const folderUpload = document.getElementById('folder-upload');
157
+ const fileUpload = document.getElementById('file-upload');
158
+
159
+ // Toggle upload mode
160
+ folderLabel.addEventListener('click', () => {
161
+ folderLabel.classList.add('active');
162
+ fileLabel.classList.remove('active');
163
+ folderUpload.classList.remove('hidden');
164
+ fileUpload.classList.add('hidden');
165
+ });
166
 
167
+ fileLabel.addEventListener('click', () => {
168
+ fileLabel.classList.add('active');
169
+ folderLabel.classList.remove('active');
170
+ fileUpload.classList.remove('hidden');
171
+ folderUpload.classList.add('hidden');
172
  });
173
  </script>
174