mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
4fb3fe62a9
No issue - Changes Modals to use CSS-based animations - All modals have an animation, so the option is removed from the handlebars helper - Removes `animation` from the handlebars helper, as all had one anyway - Removed the `centered` style - All modals should be left-aligned - Buttons now default to being on the left - Cleans up some styles (modal body top spacing) which #4632 helped clean up
21 lines
840 B
Handlebars
21 lines
840 B
Handlebars
{{#gh-modal-dialog action="closeModal" showClose=true type="action"
|
|
title="Invite a New User" confirm=confirm class="invite-new-user"}}
|
|
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label for="new-user-email">Email Address</label>
|
|
{{input action="confirmAccept" class="email" id="new-user-email" type="email" placeholder="Email Address" name="email" autofocus="autofocus"
|
|
autocapitalize="off" autocorrect="off" value=email}}
|
|
</div>
|
|
|
|
<div class="form-group for-select">
|
|
<label for="new-user-role">Role</label>
|
|
{{gh-role-selector
|
|
initialValue=authorRole
|
|
onChange="setRole"
|
|
selectId="new-user-role"}}
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
{{/gh-modal-dialog}}
|