overleaf/services/web/app/views/modals.jade

99 lines
2.7 KiB
Text
Raw Normal View History

2014-02-12 05:23:40 -05:00
#deleteEntityModal(style='display: none')
.modal
.modal-header
h3 Delete Project
.modal-body
span.message Are you sure you want to delete
strong.name Project
| ?
.modal-footer
button.btn.btn-danger.confirm Delete Forever
button.btn.cancel No
2014-04-28 12:47:47 -04:00
#renameProjectModal(style='display: none')
.modal
.modal-header
h3 Rename Project
.modal-body
form.form-horizontal(onkeydown="if (event.keyCode == 13){event.preventDefault(); document.getElementById('confirmRename').click()}")
input.inputmodal#projectNewName(placeholder='name')
.modal-footer
button.btn.btn-primary#confirmRename Rename
button.btn.cancel Cancel
2014-02-12 05:23:40 -05:00
#leaveProjectModal(style='display: none')
.modal
.modal-header
h3 Leave Project
.modal-body
span.message Are you sure you want to leave
strong.name Project
| ?
.modal-footer
button.btn.btn-danger.confirm Leave
button.btn.cancel No
#deleteUserAccountModal(style='display: none')
.modal
.modal-header
h3 Delete Account
.modal-body
span.message Type
strong Delete
| below to confirm you want to delete your account forever
div  
input.inputmodal(placeholder='')
.modal-footer
button.btn.btn-danger#confirmDeleteUser Delete Forever
button.btn.cancel Cancel
#cloneProjectModal(style='display: none')
.modal
.modal-header
h3 Clone Project
.modal-body
form.form-horizontal(onkeydown="if (event.keyCode == 13){event.preventDefault(); document.getElementById('confirmCloneProject').click()}")
input.inputmodal#newProjectName(placeholder='New Name')
.modal-footer
button.btn.btn-primary#confirmCloneProject Create
button.btn.cancel Cancel
#newProjectModal(style='display: none')
.modal
.modal-header
h3 New Project
.modal-body
form.form-horizontal(onkeydown="if (event.keyCode == 13){event.preventDefault(); document.getElementById('confirmNewProject').click()}")
input.inputmodal#newProjectName(placeholder='name')
.modal-footer
button.btn.btn-primary#confirmNewProject Create
button.btn.cancel Cancel
#newEntityModal(style='display: none')
.modal
.modal-header
h3
.modal-body
form.form-horizontal(onkeydown="if (event.keyCode == 13){event.preventDefault(); $('.in button#genericSave').click()}")
input.inputmodal.span3(placeholder='name')
.modal-footer
button.btn.btn-primary#genericSave.confirm Save
button.btn.cancel Cancel
#errorModal(style='display: none')
.modal
.modal-header
h3
.modal-body
span.message
#projectUploadModal(style='display: none')
.modal
.modal-header
h3 Upload Zipped Project
.modal-body#projectFileUpload
span Upload a zipped project
.modal-footer
button.btn.cancel Cancel