Spaces:
Running
Running
Update templates/update_db.html
Browse files- templates/update_db.html +148 -107
templates/update_db.html
CHANGED
@@ -1,107 +1,148 @@
|
|
1 |
-
{% extends 'base.html' %}
|
2 |
-
|
3 |
-
{% block content %}
|
4 |
-
<style>
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
color: #
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{% extends 'base.html' %}
|
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;
|
9 |
+
}
|
10 |
+
|
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 {
|
19 |
+
margin: auto;
|
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 {
|
29 |
+
background-color: #181831;
|
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 {
|
44 |
+
font-weight: bold;
|
45 |
+
color: #cfcfcf;
|
46 |
+
}
|
47 |
+
|
48 |
+
.form-control {
|
49 |
+
background-color: #1e1e2f;
|
50 |
+
color: #f5f5f5;
|
51 |
+
border: 1px solid #444;
|
52 |
+
}
|
53 |
+
|
54 |
+
.form-control:focus {
|
55 |
+
background-color: #1e1e2f;
|
56 |
+
color: #f5f5f5;
|
57 |
+
border-color: #4c4cff;
|
58 |
+
box-shadow: 0 0 4px #4c4cff;
|
59 |
+
}
|
60 |
+
|
61 |
+
.btn-primary {
|
62 |
+
background-color: #4c4cff;
|
63 |
+
border-color: #4c4cff;
|
64 |
+
display: flex;
|
65 |
+
justify-content: center;
|
66 |
+
align-items: center;
|
67 |
+
position: relative;
|
68 |
+
}
|
69 |
+
|
70 |
+
.btn-primary:hover {
|
71 |
+
background-color: #3838e8;
|
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 |
+
|
105 |
+
<div class="container mt-5">
|
106 |
+
<div class="card shadow">
|
107 |
+
<div class="card-header">
|
108 |
+
<h3>Create a New Vector Database</h3>
|
109 |
+
</div>
|
110 |
+
<div class="card-body">
|
111 |
+
<form id="db-form" method="post" enctype="multipart/form-data">
|
112 |
+
<!-- Database Name Input -->
|
113 |
+
<div class="form-group">
|
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 |
+
|
148 |
+
{% endblock %}
|