| 1 |
<!DOCTYPE html> |
| 2 |
<html lang="en"> |
| 3 |
<head> |
| 4 |
<meta charset="UTF-8"> |
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"> |
| 6 |
<title>Compose Email</title> |
| 7 |
<link rel="stylesheet" href="css/styles.min.css"> |
| 8 |
</head> |
| 9 |
<body class="compose-window"> |
| 10 |
<div class="compose-toolbar"> |
| 11 |
<button class="btn btn-primary" id="send-btn">Send</button> |
| 12 |
<span id="reply-indicator" class="reply-indicator"></span> |
| 13 |
<button class="btn btn-secondary" id="save-draft-btn">Save Draft</button> |
| 14 |
<button class="btn btn-secondary" id="attach-btn">Attach</button> |
| 15 |
<div class="toolbar-spacer"></div> |
| 16 |
<button class="btn btn-secondary" id="discard-btn">Discard</button> |
| 17 |
</div> |
| 18 |
|
| 19 |
|
| 20 |
Attachments bar stays outside the form (window-only chrome ordering); |
| 21 |
the modal opts into the in-template attachments-bar instead. |
| 22 |
toggle-cc binds via JS, not an inline onclick. |
| 23 |
<form class="compose-form" id="compose-form"></form> |
| 24 |
|
| 25 |
<div class="compose-attachments hidden" id="attachments-bar"></div> |
| 26 |
<div class="status-bar" id="status-bar">Ready</div> |
| 27 |
|
| 28 |
<script src="js/escape.js"></script> |
| 29 |
<script src="js/address-highlight.js"></script> |
| 30 |
<script src="js/compose-form.js"></script> |
| 31 |
<script src="js/compose-page.js"></script> |
| 32 |
</body> |
| 33 |
</html> |
| 34 |
|