| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <div id="modal" class="modal" style="display:none;">
- <div class="modalBox">
- <svg id="modalClose" width="35" height="35" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <line x1="18" y1="6" x2="6" y2="18"></line>
- <line x1="6" y1="6" x2="18" y2="18"></line>
- </svg>
- <div id="modalContent">
- <form id="modalSpreadsheetUpload" class="modalSpreadsheetUpload" method="post" action="/feedback" style="display:none;">
- <h3>Choose a file to upload your <span id="modalSpreadsheetTitle"></span></h3>
- <input id="spreadsheetInput" class="fileUpload" name="file" type="file">
- <label id="" style="display:none;">
- <input id="spreadsheetRecipeIsSquare" type="checkbox">Square Items?
- </label>
- <input type="hidden" name="type">
- <input class="button" type="submit" value="SUBMIT">
- <a id="spreadsheetDownload">download template</a>
- </form>
- <form id="modalFeedback" style="display:none;" method="post" action="/feedback">
- <label>Title:
- <input id="feedbackTitle" required>
- </label>
- <textarea id="feedbackContent" placeholder="Your Feedback..." rows="10" cols="50"></textarea>
- <input class="button" type="submit" value="SUBMIT">
- </form>
- <form id="modalNewMerchant" style="display:none;" method="post">
- <h2>NEW MERCHANT</h2>
-
- <label>NAME:
- <input type="text" id="addMerchantName" required>
- </label>
- <input type="submit" class="button" value="SUBMIT">
- </form>
- <div id="modalConfirm" style="display:none;">
- <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="red" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <circle cx="12" cy="12" r="10"></circle>
- <line x1="12" y1="8" x2="12" y2="12"></line>
- <line x1="12" y1="16" x2="12.01" y2="16"></line>
- </svg>
- <p></p>
- <div class="buttonBox">
- <button id="modalConfirmNoButton" class="button">CANCEL</button>
- <button id="modalConfirmButton" class="dangerButton">DELETE</button>
- </div>
- </div>
- <div id="modalSquareLocations" style="display:none">
- <h2 id="squareLocationsTitle">CHOOSE A LOCATION</h2>
- <div id="squareLocationsButtons"></div>
- <button id="squareLocationsCancel" class="dangerButton">CANCEL</button>
- </div>
- </div>
- </div>
- </div>
|