lnlink-server 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.js +291 -290
- package/dist/build-info.json +1 -1
- package/dist/index.js +71 -30
- package/dist/index.js.map +3 -3
- package/dist/package.json +1 -1
- package/dist/public/css/initOwner.css +8 -1
- package/dist/public/init.html +21 -0
- package/dist/public/js/init.js +552 -446
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -322,7 +322,14 @@ input:-webkit-autofill:active {
|
|
|
322
322
|
padding: 12px;
|
|
323
323
|
transition: transform 0.1s;
|
|
324
324
|
}
|
|
325
|
-
|
|
325
|
+
.btn-secondary {
|
|
326
|
+
border: none;
|
|
327
|
+
border-radius: 8px;
|
|
328
|
+
font-weight: 600;
|
|
329
|
+
font-size: 1rem;
|
|
330
|
+
padding: 12px;
|
|
331
|
+
transition: transform 0.1s;
|
|
332
|
+
}
|
|
326
333
|
.btn-lime:hover {
|
|
327
334
|
background-color: #bce600; /* Slightly darker lime */
|
|
328
335
|
color: #000;
|
package/dist/public/init.html
CHANGED
|
@@ -61,6 +61,27 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
</div>
|
|
63
63
|
|
|
64
|
+
<!-- Confirm Modal -->
|
|
65
|
+
<div class="modal fade" id="confirmModal" tabindex="-1" aria-labelledby="confirmModalLabel" aria-hidden="true">
|
|
66
|
+
<div class="modal-dialog">
|
|
67
|
+
<div class="modal-content">
|
|
68
|
+
<div class="modal-header">
|
|
69
|
+
<h5 class="modal-title" id="confirmModalLabel">
|
|
70
|
+
<i class="fas fa-question-circle text-lime"></i> Confirm
|
|
71
|
+
</h5>
|
|
72
|
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
73
|
+
</div>
|
|
74
|
+
<div class="modal-body" id="confirmModalBody">
|
|
75
|
+
<!-- Confirm message will be inserted here -->
|
|
76
|
+
</div>
|
|
77
|
+
<div class="modal-footer">
|
|
78
|
+
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
|
|
79
|
+
<button type="button" class="btn btn-lime" id="confirmModalBtn">Confirm</button>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
|
|
64
85
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
65
86
|
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
|
66
87
|
crossorigin="anonymous"></script>
|