2018-06-09 17:29:25 +02:00
|
|
|
<?php include ('header.php'); ?>
|
|
|
|
<main id="main">
|
|
|
|
<?php include dirname(__FILE__).('/widgets/settings_header.php'); ?>
|
|
|
|
<div class="article_wrap">
|
|
|
|
<aside class="left_column">
|
|
|
|
<?php include dirname(__FILE__).('/widgets/side_current_user.php'); ?>
|
|
|
|
<?php include dirname(__FILE__).('/widgets/side_footer.php'); ?>
|
|
|
|
</aside>
|
|
|
|
<article class="center_column">
|
|
|
|
<header class="timeline_header">
|
|
|
|
<ul class="header_items">
|
2018-07-31 18:51:17 +02:00
|
|
|
<li class="item toots view"><?=_('Profile settings')?></li>
|
2018-06-09 17:29:25 +02:00
|
|
|
</ul>
|
|
|
|
</header>
|
|
|
|
<div class="timeline">
|
2018-08-04 15:52:34 +02:00
|
|
|
<div style="float:left;width:50%;text-align:right;margin-top:16px">
|
2018-07-31 18:51:17 +02:00
|
|
|
<h3><?=_('Display name')?></h3>
|
2018-06-09 17:29:25 +02:00
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div class="display_name_wrap" style="float:left;width:50%">
|
2018-06-09 17:29:25 +02:00
|
|
|
<input name="display_name" type="text" class="disallow_enter textfield" id="setting_display_name" maxlength="30">
|
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div style="float:left;width:50%;text-align:right;margin-top:16px">
|
2018-07-31 18:51:17 +02:00
|
|
|
<h3><?=_('About me')?></h3>
|
2018-06-09 17:29:25 +02:00
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div class="about_me_wrap" style="float:left;width:50%">
|
2018-06-09 17:29:25 +02:00
|
|
|
<textarea name="about_me" class="disallow_enter textfield" id="setting_about_me" maxlength="160" style="resize:none;height:100px;font-family:arial;padding:5px"></textarea>
|
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div style="float:left;width:50%;text-align:right;margin-top:16px">
|
2018-07-31 18:51:17 +02:00
|
|
|
<h3><?=_('Avatar')?></h3>
|
2018-06-09 17:29:25 +02:00
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div class="avatar_wrap" style="float:left;width:50%">
|
|
|
|
<span class="halcyon_button uploadbtn" style="width:calc(75% - 2px);margin:10px;padding:0;height:28px;position:relative">
|
2018-06-09 17:29:25 +02:00
|
|
|
<input name="avatar" type="file" id="setting_avatar" style="opacity:0;width:100%;height:100%;float:left">
|
|
|
|
</span>
|
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div style="float:left;width:50%;text-align:right;margin-top:16px">
|
2018-07-31 18:51:17 +02:00
|
|
|
<h3><?=_('Header')?></h3>
|
2018-06-09 17:29:25 +02:00
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div class="header_wrap" style="float:left;width:50%">
|
|
|
|
<span class="halcyon_button uploadbtn" style="width:calc(75% - 2px);margin:10px;padding:0;height:28px;position:relative">
|
2018-06-09 17:29:25 +02:00
|
|
|
<input name="header" type="file" id="setting_header" style="opacity:0;width:100%;height:100%;float:left">
|
|
|
|
</span>
|
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div style="float:left;width:50%;text-align:right;margin-top:16px">
|
2018-07-31 18:51:17 +02:00
|
|
|
<h3><?=_('Lock account')?></h3>
|
2018-06-09 17:29:25 +02:00
|
|
|
</div>
|
2018-08-04 15:52:34 +02:00
|
|
|
<div class="lock_account_wrap" style="float:left;width:50%">
|
2018-06-09 17:29:25 +02:00
|
|
|
<div class="switch">
|
|
|
|
<input type="checkbox" id="setting_lock_account">
|
|
|
|
<div class="switch-btn">
|
|
|
|
<span></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span style="visibility:hidden">-</span>
|
|
|
|
</div>
|
|
|
|
<footer id="js-timeline_footer" class="timeline_footer">
|
|
|
|
<i id="savestate" class="fa fa-spin fa-circle-o-notch" aria-hidden="true"></i>
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<script src="/assets/js/halcyon/halcyonSettings.js"></script>
|
|
|
|
<?php include ('footer.php'); ?>
|