-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdashboard-settings.html
242 lines (202 loc) · 8.98 KB
/
dashboard-settings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!doctype html>
<html lang="en" class="custom-scroll">
<head>
<meta charset="UTF-8">
<title>Booktype Edit Screen</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<link href='css/bootstrap.css' rel='stylesheet' type='text/css' />
<link href='css/bootstrap-custom.css' rel='stylesheet' type='text/css' />
<link href='css/bootstrap-theme.css' rel='stylesheet' type='text/css' />
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href='css/booki-new.css' rel='stylesheet' type='text/css' />
<link href='css/aloha.css' rel='stylesheet' type='text/css' />
<link href='css/backo.css' rel='stylesheet' type='text/css' />
</head>
<body>
<!-- Main menu left -->
<div class="sf-main-menu">
<div class="sf-menu-header-bar"></div>
<div class="sf-menu-content">
<ul>
<li class="active">
<a href="#">Home</a>
</li>
<li>
<a href="#">My Dashboard</a>
</li>
<li>
<a href="#">Books</a>
</li>
<li>
<a href="#">Groups</a>
</li>
<li>
<a href="#">People</a>
</li>
</ul>
</div>
</div>
<!-- Navbar -->
<div class="navigation-bar">
<div class="user">
<div class="btn-group">
<button class="btn btn-inverse dropdown-toggle" data-toggle="dropdown">Vladimir Stefanovic<span class="caret"></span></button>
<ul class="dropdown-menu pull-right">
<li><a href="/accounts/Fritz/" target="_blank"><i class="icon-user"></i>Profile</a></li>
<li><a href="/_control/" target="_blank"><i class="icon-gears"></i>Control Center</a></li>
<li class="divider"></li>
<li><a href="/accounts/signout/"><i class="icon-signout"></i>Logout</a></li>
</ul>
</div>
<div class="btn-group">
<button class="btn btn-inverse dropdown-toggle" data-toggle="dropdown">en<span class="caret"></span></button>
<ul class="dropdown-menu pull-right">
<li><a href="/accounts/Fritz/" target="_blank"><i class="icon-flag"></i>en</a></li>
<li><a href="/_control/" target="_blank"><i class="icon-flag"></i>de</a></li>
</ul>
</div>
</div>
<div class="collapse-navigation"><a href="#"></a></div>
<div class="logo"><a href="#"></a></div>
</div>
<!-- end Navbar -->
<!-- Bookbar -->
<div class="bookbar">
<h1>Settings</h1>
</div>
<!-- end Bookbar -->
<div class="container">
<div class="row two-col">
<div class="col-xs-8">
<div class="box gray">
<h2 class="box-title-alter">User settings</h2>
<form method="post" action="/accounts/Fritz/_save_settings/" target="hidden_settings" enctype="multipart/form-data" name="formsettings">
<fieldset class="plain">
<ul class="list">
<li>
<label>Email</label>
<input type="text" name="email" class="form-control" value="[email protected]">
</li>
<li>
<label>Full name</label>
<input type="text" name="fullname" class="form-control" value="Vladimir Stefanovic">
</li>
<li>
<label>About yourself</label>
<textarea name="aboutyourself" class="form-control" cols="40" rows="20">Vladimir is Sourcefabric’s Interface and Usability Designer, so he takes the raw functionality of our products and turns into something users really enjoy working with.</textarea>
</li>
<li>
<label>Profile image</label>
<input type="file" name="profile">
</li>
<li>
<label>Notification filter</label>
<input type="text" name="notification" class="form-control" value="">
</li>
</ul>
<button class="btn btn-default float-left">Save changes</button>
</fieldset>
</form>
</div>
</div>
<div class="col-xs-4">
<div class="box white">
<h2 class="box-title">Change password</h2>
<form method="post" action="" enctype="multipart/form-data" name="formpassword">
<fieldset class="plain">
<ul class="list">
<li>
<label>Old Password</label>
<input type="password" name="password0" class="form-control" value="">
</li>
<li>
<label>New Password</label>
<input type="password" name="password1" class="form-control" value="">
</li>
<li>
<label>Password (again)</label>
<input type="password" name="password2" class="form-control" value="">
</li>
<small><a href="/accounts/forgot_password/" data-toggle="modal" data-target="#myModal">Forgotten your password?</a></small>
</ul>
<button class="btn btn-default float-left">Change password</button>
</fieldset>
</form>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h2 class="modal-title" id="myModalLabel">Forgot your password</h2>
</div>
<div class="modal-body">
<form method="POST" action="/" id="loginform" name="loginform" onsubmit="return false;">
<ul class="list">
<li>
<label>Username or E-mail Address</label>
<input type="text" name="username" class="form-control" value="">
</li>
<p>Give us your username or e-mail you used to create Booktype account and we will send you new password.</p>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Send request</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</form>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
</div>
</div>
</div> <!-- End of container -->
<footer>
<div class="container">
<div class="col-xs-4">
<h2>About</h2>
<p>This is a demonstration server for Booktype. This server is reset on a regular basis, and any books created here will be deleted at that time.</p>
</div>
<div class="col-xs-4">
<h2>How to use</h2>
<p>If you wish to have your own installation please either download the sources <a href="http://www.sourcefabric.org/en/booktype/">http://www.sourcefabric.org/en/booktype/</a> or check out Booktype Pro, our free, cloud-hosted publishing service - <a href="http://sourcefabric.com/en/booktypepro/">http://sourcefabric.com/en/booktypepro/</a>.</p>
</div>
<div class="col-xs-4">
<h2>Need Help?</h2>
<p>With social tools, easy workflows and freedom to choose your own licences, Booktype Pro is perfect for internal, or public-facing, use. Publishers, print-on-demand services and education institutions produce better books, faster, while Sourcefabric takes care of your own platform's installation, hosting, upgrades, and security.</p>
</div>
<div class="content-divider"></div>
<div class="col-xs-4">
<img class="pull-right" src="img/footer_logo.png">
</div>
<div class="col-xs-8">
<p>Powered by Booktype, the open content management system for professional writers. <br>
© 2013 Sourcefabric o.p.s. | [email protected]</p>
</div>
</div>
</footer>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="js/button.js"></script>
<script type="text/javascript" src="js/dropdown.js"></script>
<script type="text/javascript" src="js/tooltip.js"></script>
<script type="text/javascript" src="js/modal.js"></script>
<script type="text/javascript" src="js/tab.js"></script>
<script type="text/javascript" src="js/transition.js"></script>
<script type="text/javascript" src="js/jquery.ui.touch-punch.js"></script>
<script type="text/javascript" src="js/jquery.mjs.nestedSortable.js"></script>
<script type="text/javascript" src="js/booki-init.js"></script>
<script type="text/javascript">
// Backo book lists and thumb
$( document ).ready(function() {
$('.showList').click(function(){
$('#books-prew, #books-prew-2').attr('class','book-list');
});
$('.showGrid').click(function(){
$('#books-prew, #books-prew-2').attr('class','book-thumb');
});
});
</script>
</body>
</html>