source: subversion/trunk/roundcubemail/skins/default/templates/compose.html @ 3496

Last change on this file since 3496 was 3496, checked in by alec, 3 years ago
  • added tabindex on editor-selector
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<title><roundcube:object name="productname" /> :: <roundcube:label name="compose" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/googiespell.css" />
7<script type="text/javascript" src="/functions.js"></script>
8</head>
9<body onload="rcmail_init_compose_form()">
10
11<roundcube:include file="/includes/taskbar.html" />
12<roundcube:include file="/includes/header.html" />
13
14<form name="form" action="./" method="post">
15
16<div id="messagetoolbar">
17<table border="0" cellspacing="0" cellpadding="0"><tr>
18    <td id="compose-toolbar">
19      <roundcube:button command="list" type="link" class="button back" classAct="button back" classSel="button backSel" title="backtolist" content=" " />
20      <roundcube:button command="send" type="link" class="buttonPas send" classAct="button send" classSel="button sendSel" title="sendmessage" content=" " />
21      <roundcube:button command="spellcheck" type="link" class="buttonPas spellcheck" classAct="button spellcheck" classSel="button spellcheckSel" title="checkspelling" content=" " />
22      <roundcube:button command="add-attachment" type="link" class="buttonPas attach" classAct="button attach" classSel="button attachSel" title="addattachment" content=" " />
23      <roundcube:button command="insert-sig" type="link" class="buttonPas insertsig" classAct="button insertsig" classSel="button insertsigSel" title="insertsignature" content=" " />
24      <roundcube:button command="savedraft" type="link" class="buttonPas savedraft" classAct="button savedraft" classSel="button savedraftSel" title="savemessage" content=" " />
25      <roundcube:container name="toolbar" id="compose-toolbar" />
26    </td>
27    <td id="priority-selector">
28      <label for="rcmcomposepriority"><roundcube:label name="priority" />:</label>&nbsp;<roundcube:object name="prioritySelector" form="form" id="rcmcomposepriority" />
29    </td>
30    <td id="receipt-selector">
31      <roundcube:object name="receiptCheckBox" form="form" id="rcmcomposereceipt" />&nbsp;<label for="rcmcomposereceipt"><roundcube:label name="returnreceipt" /></label>
32    </td>
33</tr></table>
34</div>
35
36<div id="compose-container">
37    <div id="compose-headers-div" style="width: 100%;">
38        <table border="0" cellspacing="0" cellpadding="1" id="compose-headers" summary="">
39        <tbody>
40            <tr>
41                <td class="title"><label for="_from"><roundcube:label name="from" /></label></td>
42                <td><roundcube:object name="composeHeaders" part="from" form="form" id="_from" tabindex="1" /></td>
43            </tr><tr>
44                <td class="title top"><label for="_to"><roundcube:label name="to" /></label></td>
45                <td><roundcube:object name="composeHeaders" part="to" form="form" id="_to" cols="70" rows="2" tabindex="2" /></td>
46            </tr><tr id="compose-cc">
47                <td class="title top"><a href="#cc" onclick="return rcmail_hide_header_form('cc');"><img src="/images/icons/minus.gif" alt="" title="<roundcube:label name='delete' />" /></a>
48                <label for="_cc"><roundcube:label name="cc" /></label></td>
49                <td><roundcube:object name="composeHeaders" part="cc" form="form" id="_cc" cols="70" rows="2" tabindex="3" /></td>
50            </tr><tr id="compose-bcc">
51                <td class="title top"><a href="#bcc" onclick="return rcmail_hide_header_form('bcc');"><img src="/images/icons/minus.gif" alt="" title="<roundcube:label name='delete' />" /></a>
52                <label for="_bcc"><roundcube:label name="bcc" /></label></td>
53                <td><roundcube:object name="composeHeaders" part="bcc" form="form" id="_bcc" cols="70" rows="2" tabindex="4" /></td>
54            </tr><tr id="compose-replyto">
55                <td class="title top"><a href="#replyto" onclick="return rcmail_hide_header_form('replyto');"><img src="/images/icons/minus.gif" alt="" title="<roundcube:label name='delete' />" /></a>
56                <label for="_replyto"><roundcube:label name="replyto" /></label></td>
57                <td><roundcube:object name="composeHeaders" part="replyto" form="form" id="_replyto" size="70" tabindex="5" /></td>
58            </tr><tr id="compose-links">
59                <td></td>
60                <td class="formlinks">
61                    <a href="#cc" onclick="return rcmail_show_header_form('cc')" id="cc-link"><roundcube:label name="addcc" /></a>
62                    <span class="separator">|</span>
63                    <a href="#bcc" onclick="return rcmail_show_header_form('bcc')" id="bcc-link"><roundcube:label name="addbcc" /></a>
64                    <span class="separator">|</span>
65                    <a href="#reply-to" onclick="return rcmail_show_header_form('replyto')" id="replyto-link"><roundcube:label name="addreplyto" /></a>
66                </td>
67            </tr><tr>
68                <td class="title"><label for="compose-subject"><roundcube:label name="subject" /></label></td>
69                <td><roundcube:object name="composeSubject" id="compose-subject" form="form" tabindex="6" /></td>
70            </tr><tr>
71                <td class="title"><roundcube:label name="editortype" /></td>
72                <td>
73                    <div id="editor-select"><roundcube:object name="editorSelector" editorid="compose-body" tabindex="7" /></div>
74                    <div id="spellcheck-control"></div>
75                </td>
76            </tr>
77        </tbody>
78        </table>
79    </div>
80    <div id="compose-div">
81        <roundcube:object name="composeBody" id="compose-body" form="form" cols="70" rows="20" tabindex="8" />
82        <table border="0" cellspacing="0" summary="" style="width:100%; margin-top: 5px;"><tbody>
83            <tr>
84                <td style="white-space: nowrap">
85                    <roundcube:button type="input" command="send" class="button mainaction" label="sendmessage" tabindex="9" />
86                    <roundcube:button type="input" command="list" class="button" label="cancel" tabindex="10" />
87                </td>
88                <td style="text-align:right; white-space: nowrap">
89                    <label><roundcube:label name="savesentmessagein" />: <roundcube:object name="storetarget" maxlength="30" tabindex="11" /></label>
90                </td>
91            </tr>
92        </tbody></table>
93    </div>
94</div>
95
96<div id="compose-attachments">
97<div id="attachment-title"><roundcube:label name="attachments" /></div>
98<roundcube:object name="composeAttachmentList" deleteIcon="/images/icons/delete.png" cancelIcon="/images/icons/delete.png" loadingIcon="/images/display/loading_blue.gif" />
99<p><roundcube:button command="add-attachment" imagePas="/images/buttons/add_pas.png" imageSel="/images/buttons/add_sel.png" imageAct="/images/buttons/add_act.png" width="23" height="18" title="addattachment" /></p>
100</div>
101
102</form>
103
104<roundcube:object name="composeAttachmentForm" id="attachment-form" attachmentFieldSize="40" class="popupmenu" />
105
106</body>
107</html>
Note: See TracBrowser for help on using the repository browser.