LIL-161 После отправки письма на восстановление пароля возвращать состояние формы

remotes/origin/hasaccess
Vitaly Baev 8 years ago
parent ccb6091383
commit d42df141a9
  1. 2
      project/templates/lilcity/index.html
  2. 2
      web/build/css/app.css.map
  3. BIN
      web/build/favicon.ico
  4. 5
      web/build/js/app.js
  5. 2
      web/build/js/app.js.map
  6. 5
      web/src/js/modules/auth.js

@ -363,7 +363,7 @@
<div id="password-reset__sent" style="display: none;">
<p>На ваш email отправлены инструкции по восстановлению пароля</p>
<div class="auth__foot">
<button id="password-reset__success-hide" class="auth__btn btn btn_light" type="button">Хорошо</button>
<button id="password-reset__success-hide" class="auth__btn btn btn_light js-auth-go-enter" type="button">Хорошо</button>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -27660,6 +27660,11 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
goPass = auth.find('.js-auth-go-pass'),
goEnter = auth.find('.js-auth-go-enter');
(0, _jquery2.default)('.js-header-enter').on('click', function () {
pass.hide();
login.show();
});
type.on('click', function (e) {
e.preventDefault();
var _this = (0, _jquery2.default)(this),

File diff suppressed because one or more lines are too long

@ -12,6 +12,11 @@ $(document).ready(function () {
goPass = auth.find('.js-auth-go-pass'),
goEnter = auth.find('.js-auth-go-enter');
$('.js-header-enter').on('click', function () {
pass.hide();
login.show();
});
type.on('click', function (e) {
e.preventDefault();
let _this = $(this),

Loading…
Cancel
Save