Spaces:
Building
Building
Create newProjectModal.html
Browse files- static/newProjectModal.html +17 -0
static/newProjectModal.html
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!-- New Project Modal (if using a modal, otherwise use prompt in JS) -->
|
2 |
+
<div class="modal fade" id="newProjectModal" tabindex="-1" aria-labelledby="newProjectModalLabel" aria-hidden="true">
|
3 |
+
<div class="modal-dialog">
|
4 |
+
<div class="modal-content">
|
5 |
+
<div class="modal-header">
|
6 |
+
<h5 class="modal-title">Create New Project</h5>
|
7 |
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
8 |
+
</div>
|
9 |
+
<div class="modal-body">
|
10 |
+
<input type="text" id="newProjectNameInput" class="form-control mb-2" placeholder="Project Name">
|
11 |
+
</div>
|
12 |
+
<div class="modal-footer">
|
13 |
+
<button class="btn btn-success" onclick="createNewProject()">Create</button>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
</div>
|
17 |
+
</div>
|