mirror of
https://github.com/documize/community.git
synced 2025-08-02 20:15:26 +02:00
Flexbox for auth UI
Providing better support for flaky IE/Edge browsers.
This commit is contained in:
parent
10a184ad10
commit
4130d1f129
10 changed files with 70 additions and 47 deletions
|
@ -19,10 +19,10 @@ export default Route.extend({
|
|||
|
||||
activate() {
|
||||
this.get('browser').setTitleAsPhrase('Reset Password');
|
||||
$('body').addClass('background-color-theme-light');
|
||||
$('body').addClass('background-color-theme-light d-flex justify-content-center align-items-center');
|
||||
},
|
||||
|
||||
deactivate() {
|
||||
$('body').removeClass('background-color-theme-light');
|
||||
$('body').removeClass('background-color-theme-light d-flex justify-content-center align-items-center');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<div class="auth-box">
|
||||
<div class="logo">
|
||||
<img src="/assets/img/logo-color.png" title="Documize" alt="Documize" class="img-fluid" />
|
||||
</div>
|
||||
{{password-reset reset=(action 'reset')}}
|
||||
<div class="auth-center">
|
||||
<div class="auth-box">
|
||||
<div class="logo">
|
||||
<img src="/assets/img/logo-purple.png" title="Documize" alt="Documize" class="img-fluid" />
|
||||
</div>
|
||||
{{password-reset reset=(action 'reset')}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue