mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-12-14 02:50:58 +01:00
aa6520daac
* Added frontend development files/environment * More items-categories related removals * Improvements in pages templates (inc. static pages) * Improvements in video player * Added empty home page message + cta * Updates in media, playlist and management pages * Improvements in material icons font loading * Replaced media & playlists links in frontend dev-env * frontend package version update * chnaged frontend dev url port * static files update * Changed default position of theme switcher * enabled frontend docker container
44 lines
1.8 KiB
HTML
Executable File
44 lines
1.8 KiB
HTML
Executable File
<div id="app-header"></div>
|
|
<div id="app-sidebar"></div>
|
|
<div class="page-main-wrap">
|
|
<div class="page-main">
|
|
<div class="page-main-inner">
|
|
<div class="user-action-form-wrap">
|
|
<div class="user-action-form-inner">
|
|
<h1>Edit Profile</h1>
|
|
<form enctype="multipart/form-data" action="" method="post" class="post-form">
|
|
<p>
|
|
<label for="id_name">Full name:</label>
|
|
<input type="text" name="name" value="" maxlength="250" required="" id="id_name" />
|
|
</p>
|
|
<p>
|
|
<label for="id_description">About me:</label>
|
|
<textarea name="description" cols="40" rows="10" id="id_description"></textarea>
|
|
</p>
|
|
<p>
|
|
<label for="id_email">Email address:</label>
|
|
<input type="email" name="email" value="" maxlength="254" id="id_email" />
|
|
</p>
|
|
<p>
|
|
<label for="id_logo">Logo:</label> Currently: <a href="#">*****</a>
|
|
<input type="checkbox" name="logo-clear" id="logo-clear_id" />
|
|
<label for="logo-clear_id">Clear</label><br />
|
|
Change:
|
|
<input type="file" name="logo" accept="image/*" id="id_logo" />
|
|
</p>
|
|
<p>
|
|
<label for="id_notification_on_comments"
|
|
>Whether you will receive email notifications for comments added to your content:</label
|
|
>
|
|
<input type="checkbox" name="notification_on_comments" id="id_notification_on_comments" checked="" />
|
|
</p>
|
|
<button class="primaryAction" type="submit">Update Profile</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="page-sidebar-content-overlay"></div>
|
|
</div>
|
|
</div>
|
|
<div id="app-footer"></div>
|