| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <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>
- <h3>CREATE WITH:</h3>
- <input type="submit" class="button" value="NO POS">
- </form>
- </div>
- </div>
- </div>
|