0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/tpl/settings/user-profile.hbs
Michael Schmidt-Voigt 08ed07372f Add back button to settings and content preview
Issue #149
- added back button to content preview and settings
- added hammer.js interactions
- needs some tweaking for mobile view
- problems with touch events (additional click event after 300ms)
2013-09-17 15:58:41 -03:00

87 lines
3.3 KiB
Handlebars

<header>
<button class="button-back">Cancel</button>
<h2 class="title">Your Profile</h2>
<section class="page-actions">
<button class="button-save">Save</button>
</section>
</header>
<section class="content no-padding">
<header class="user-profile-header">
<img id="user-cover" class="cover-image" src="{{#if cover}}{{cover}}{{else}}/shared/img/cover.png{{/if}}" title="{{name}}'s Cover Image"/>
<button class="edit-cover-image js-modal-cover">Change Cover</button>
</header>
<form class="user-profile" novalidate="novalidate">
<fieldset class="user-details-top">
<figure class="user-image">
<a id="user-image" class="img" {{#if image}}style="background-image: url({{image}});"{{/if}} href="#"><span class="hidden">{{name}}'s Picture</span></a>
<button class="edit-user-image js-modal-image">Edit Picture</button>
</figure>
<div class="form-group">
<label for="user-name" class="hidden">Full Name</label>
<input type="url" value="{{name}}" id="user-name" placeholder="Full Name" autocorrect="off" />
<p>Use your real name so people can recognise you</p>
</div>
</fieldset>
<fieldset class="user-details-bottom">
<div class="form-group">
<label for"user-email">Email</label>
<input type="email" value="{{email}}" id="user-email" placeholder="Email Address" autocapitalize="off" autocorrect="off" />
<p>Used for notifications</p>
</div>
<div class="form-group">
<label for="user-location">Location</label>
<input type="text" value="{{location}}" id="user-location" />
<p>Where in the world do you live?</p>
</div>
<div class="form-group">
<label for="user-website">Website</label>
<input type="text" value="{{website}}" id="user-website" autocapitalize="off" autocorrect="off" />
<p>Have a website or blog other than this one? Link it!</p>
</div>
<div class="form-group bio-container">
<label for="user-bio">Bio</label>
<textarea id="user-bio">{{bio}}</textarea>
<p class="bio-desc">Write about you, in 200 characters or less.</p>
<span class="word-count">0</span>
</div>
<hr />
</fieldset>
<fieldset>
<div class="form-group">
<label for="user-password-old">Old Password</label>
<input type="password" id="user-password-old" />
</div>
<div class="form-group">
<label for="user-password-new">New Password</label>
<input type="password" id="user-password-new" />
</div>
<div class="form-group">
<label for="user-new-password-verification">Verify Password</label>
<input type="password" id="user-new-password-verification" />
</div>
<div class="form-group">
<button class="button-delete button-change-password">Change Password</button>
</div>
</fieldset>
</form>
</section>