Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-07-25 18:04:33 +0300
committerJulius Härtl <jus@bitgrid.net>2019-07-31 10:19:07 +0300
commit3b0d13944a966930731d3cb9a0216236420796c5 (patch)
tree05b6e7a694b77568984fd7087a58935a68517942 /core/templates
parent57f2ea22c784d7b2c3bbabc6b616b9afc6c5ff3c (diff)
Move actual password reset to vue
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/lostpassword/resetpassword.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/core/templates/lostpassword/resetpassword.php b/core/templates/lostpassword/resetpassword.php
deleted file mode 100644
index 7ccf6f5ec85..00000000000
--- a/core/templates/lostpassword/resetpassword.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-/**
- * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Michael Gapczynski <GapczynskiM@gmail.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Victor Dubiniuk <dubiniuk@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
-style('core', 'lostpassword/resetpassword');
-script('core', 'lostpassword');
-?>
-
-<form action="<?php print_unescaped($_['link']) ?>" id="reset-password" method="post">
- <fieldset>
- <p>
- <label for="password" class="infield"><?php p($l->t('New password')); ?></label>
- <input type="password" name="password" id="password" value="" placeholder="<?php p($l->t('New Password')); ?>" required />
- </p>
- <input class="primary" type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" />
- <p class="text-center">
- <img class="hidden" id="float-spinner" src="<?php p(image_path('core', 'loading-dark.gif'));?>"/>
- </p>
- </fieldset>
-</form>