source: subversion/trunk/roundcubemail/skins/default/templates/settings.html @ 2401

Last change on this file since 2401 was 2401, checked in by thomasb, 4 years ago

Merged branch devel-api (from r2208 to r2387) back into trunk (omitting some sample plugins)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 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="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/settings.css" />
7<script type="text/javascript" src="/functions.js"></script>
8</head>
9<body>
10
11<roundcube:include file="/includes/taskbar.html" />
12<roundcube:include file="/includes/header.html" />
13<roundcube:include file="/includes/settingstabs.html" />
14
15<form name="form" action="./" method="post">
16
17<div id="userprefs-box">
18<div id="userprefs-title"><roundcube:label name="userpreferences" /></div>
19
20<div id="userprefscontainer" style="padding:15px 0 15px 15px">
21<div class="userprefs-block">
22  <roundcube:object name="userprefs" form="form" parts="general,mailbox,mailview" />
23</div>
24<div class="userprefs-block">
25  <roundcube:object name="userprefs" form="form" parts="compose,folders,server" />
26</div>
27<div style="clear:left"></div>
28
29<roundcube:container name="userprefs" id="userprefscontainer" />
30</div>
31</div>
32
33<p id="listbuttons">
34<roundcube:button command="save" type="input" class="button mainaction" label="save" />
35</p>
36
37</form>
38
39<div class="advswitch">
40<label for="advswitch"><roundcube:label name="advancedoptions"></label>
41<input type="checkbox" id="advswitch" name="_advanced" value="0" onclick="rcube_show_advanced(this.checked)" />
42</div>
43
44</body>
45</html>
Note: See TracBrowser for help on using the repository browser.