diff options
| author | yo mama <pepper@scannerjammer.com> | 2014-12-02 15:39:57 -0800 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2014-12-02 15:39:57 -0800 |
| commit | a6f58439c639e0bb390180f67675e87b6a3ece21 (patch) | |
| tree | e39a4564065b4dd41f46d6ec095e9989c72278f3 /modal.html | |
first
Diffstat (limited to 'modal.html')
| -rw-r--r-- | modal.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modal.html b/modal.html new file mode 100644 index 0000000..00a3a16 --- /dev/null +++ b/modal.html @@ -0,0 +1,39 @@ +<!--ALERT html--> +<div class="mediaDrawer fixed animate alert"> + <div class="box"> + <form> + <span class="message"></span> + <br> + <button class="ok">OK</button> + </form> + </div> +</div> + +<!--CONFIRM html--> +<div class="mediaDrawer fixed animate confirm"> + <span class="close">X</span> + <div class="box"> + <form> + <span class="question"></span> + <br> + <button class="yes">OK</button> + <button class="no">Cancel</button> + </form> + </div> +</div> + +<!--ERROR html--> +<div class="mediaDrawer fixed animate error"> + <span class="close">X</span> + <div class="box"> + <form> + Your submission had errors: + <br> + <span class="errorList"></span> + <br> + <button class="ok">OK</button> + </form> + </div> +</div> + + |
