source: github/skins/default/templates/compose.html @ 1cded85

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 1cded85 was 1cded85, checked in by thomascube <thomas@…>, 7 years ago

Re-design of caching (new database table added\!); some bugfixes; Postgres support

  • Property mode set to 100644
File size: 4.3 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|Mail :: <roundcube:label name="compose" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/mail.css" />
7<script type="text/javascript">
8<!--
9
10function rcmail_toggle_display(id)
11  {
12  var row, disp;
13  if (row = document.getElementById(id))
14    {
15    disp = (!row.style.display || row.style.display=='none') ? (document.all ? 'block' : 'table-row') : 'none';
16    row.style.display = disp;
17    }
18   
19  return false;
20  }
21
22//-->
23</script>
24</head>
25<body>
26
27<roundcube:include file="/includes/taskbar.html" />
28<roundcube:include file="/includes/header.html" />
29
30<form name="form" method="post">
31
32<div id="messagetoolbar">
33<roundcube:button command="list" image="/images/buttons/back_act.png" width="32" height="32" title="backtolist" />
34<roundcube:button command="send" imageAct="/images/buttons/send_act.png" imagePas="/images/buttons/send_pas.png" width="32" height="32" title="sendmessage" />
35<roundcube:button command="contacts" imageAct="/images/buttons/contacts_act.png" imagePas="/images/buttons/contacts_pas.png" width="32" height="32" title="addressbook" />
36<roundcube:button command="add-attachment" imageAct="/images/buttons/attach_act.png" imagePas="/images/buttons/attach_pas.png" width="32" height="32" title="addattachment" />
37
38<div id="priority-selector">
39<roundcube:label name="priority" />:&nbsp;<roundcube:object name="prioritySelector" form="form" />
40</div>
41
42</div>
43
44<div id="compose-container">
45<table border="0" cellspacing="0" cellpadding="1" style="width:100%; height:100%;" summary=""><tr>
46<td>
47
48<table border="0" cellspacing="0" cellpadding="1" id="compose-headers" summary=""><tr>
49
50<td class="title"><roundcube:label name="from" /></td>
51<td><roundcube:object name="composeHeaders" part="from" form="form" tabindex="1" /></td>
52
53</tr><tr>
54
55<td class="title top"><roundcube:label name="to" /></td>
56<td><roundcube:object name="composeHeaders" part="to" form="form" cols="80" rows="2" tabindex="2" /></td>
57<td class="add-button"><a href="#" onclick="return rcmail_toggle_display('compose-cc')">[Cc]</a><br />
58<a href="#" onclick="return rcmail_toggle_display('compose-bcc')">[Bcc]</a><br /></td>
59
60</tr><tr id="compose-cc">
61
62<td class="title top"><roundcube:label name="cc" /></td>
63<td><roundcube:object name="composeHeaders" part="cc" form="form" cols="80" rows="2" tabindex="3" /></td>
64
65</tr><tr id="compose-bcc">
66
67<td class="title top"><roundcube:label name="bcc" /></td>
68<td><roundcube:object name="composeHeaders" part="bcc" form="form" cols="80" rows="2" tabindex="4" /></td>
69
70</tr><tr id="compose-replyto">
71
72<td class="title top"><roundcube:label name="replyto" /></td>
73<td><roundcube:object name="composeHeaders" part="replyto" form="form" size="80" tabindex="5" /></td>
74
75<!-- </tr><tr>
76
77<td><roundcube:object name="composeAttachment" size="20" /></td> -->
78
79</tr><tr>
80
81<td class="title"><roundcube:label name="subject" /></td>
82<td><roundcube:object name="composeSubject" id="compose-subject" form="form" tabindex="6" /></td>
83
84</tr></table>
85
86</td>
87
88</tr><tr>
89
90<td style="width:100%; height:95%; vertical-align:top;">
91<roundcube:object name="composeBody" id="compose-body" form="form" cols="80" rows="20" warp="virtual" tabindex="7" /><br />
92<roundcube:label name="charset" />:&nbsp;<roundcube:object name="charsetSelector" tabindex="8" />
93</td>
94
95</tr></table>
96
97</div>
98
99<div id="compose-attachments">
100<div><roundcube:label name="attachments" /></div>
101<roundcube:object name="composeAttachmentList" />
102<p><roundcube:button command="add-attachment" imagePas="/images/buttons/add_pas.png" imageAct="/images/buttons/add_act.png" width="23" height="18" title="addattachment" />
103</div>
104
105</form>
106
107<roundcube:object name="composeAttachmentForm" id="attachment-form" />
108
109<script type="text/javascript">
110<!--
111
112var cc_field = document.form._cc;
113if (cc_field && cc_field.value!='')
114  rcmail_toggle_display('compose-cc');
115
116//-->
117</script>
118
119<!--
120<div id="attachment-form">
121<roundcube:object name="composeAttachment" size="20" /><br />
122<input type="button" value="<roundcube:label name='close' />" onclick="rcmail_show_attachment_form(0)" />
123<input type="button" value="<roundcube:label name='send' />" onclick="rcmail.command('send-attachment', this)" />
124</div>
125-->
126
127</body>
128</html>
Note: See TracBrowser for help on using the repository browser.