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