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

Last change on this file since 2164 was 2164, checked in by thomasb, 5 years ago

Group settings boxes together in floating blocks for better layout

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.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="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 onload="rcube_init_settings_tabs()">
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 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</div>
29</div>
30
31<p id="listbuttons">
32<roundcube:button command="save" type="input" class="button mainaction" label="save" />
33</p>
34
35</form>
36
37<div class="advswitch">
38<label for="advswitch"><roundcube:label name="advancedoptions"></label>
39<input type="checkbox" id="advswitch" name="_advanced" value="0" onclick="rcube_show_advanced(this.checked)" />
40</div>
41
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.