nodebb-theme-persona 13.0.7 → 13.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/templates/login.tpl
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
{{{ if allowLocalLogin }}}
|
|
11
11
|
<div class="{{{ if alternate_logins }}}col-md-6{{{ else }}}col-md-12{{{ end }}}">
|
|
12
12
|
<div class="login-block">
|
|
13
|
-
<div class="alert alert-danger" id="login-error-notify"
|
|
14
|
-
<button type="button" class="close" data-dismiss="alert"
|
|
13
|
+
<div class="alert alert-danger" id="login-error-notify" {{{ if error }}}style="display:block"{{{ else }}}style="display: none;"{{{ end }}}>
|
|
14
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
15
15
|
<strong>[[login:failed_login_attempt]]</strong>
|
|
16
16
|
<p>{error}</p>
|
|
17
17
|
</div>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<a
|
|
1
|
+
<a href="{config.relative_path}/groups/{./slug}" class="badge rounded-1 text-uppercase text-truncate" style="max-width: 150px;color:{./textColor};background-color: {./labelColor};"><i class="fa {{{ if ./icon }}}{./icon} me-1{{{else}}}hidden{{{ end }}}"></i><span class="badge-text">{{{ if ./userTitle }}}{./userTitle}{{{ else }}}{./displayName}{{{ end }}}</span></a>
|
package/templates/reset.tpl
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
|
|
8
8
|
<div class="card card-body bg-light">
|
|
9
9
|
<div class="alert alert-success hide" id="success">
|
|
10
|
-
<button type="button" class="close" data-dismiss="alert"
|
|
10
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
11
11
|
[[reset_password:password_reset_sent]]
|
|
12
12
|
</div>
|
|
13
13
|
<div class="alert alert-danger hide" id="error">
|
|
14
|
-
<button type="button" class="close" data-dismiss="alert"
|
|
14
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
15
15
|
[[reset_password:invalid_email]]
|
|
16
16
|
</div>
|
|
17
17
|
<form onsubmit="return false;">
|
package/templates/reset_code.tpl
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
</div>
|
|
9
9
|
<!-- ENDIF displayExpiryNotice -->
|
|
10
10
|
<div class="alert alert-success hidden" id="success">
|
|
11
|
-
<button type="button" class="close" data-dismiss="alert"
|
|
11
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
12
12
|
<strong>[[reset_password:password_changed.title]]</strong>
|
|
13
13
|
<p>[[reset_password:password_changed.message]]</p>
|
|
14
14
|
</div>
|