nextcloud/core/templates/lostpassword/resetpassword.php

41 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2015-03-26 13:44:34 +03:00
/**
* @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>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @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');
?>
2014-06-03 02:24:27 +04:00
<form action="<?php print_unescaped($_['link']) ?>" id="reset-password" method="post">
<fieldset>
2014-05-28 01:09:08 +04:00
<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 />
2014-05-28 01:09:08 +04:00
</p>
<input type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" />
2014-11-18 12:25:16 +03:00
<p class="text-center">
<img class="hidden" id="float-spinner" src="<?php p(image_path('core', 'loading-dark.gif'));?>"/>
2014-11-18 12:25:16 +03:00
</p>
</fieldset>
2011-09-04 20:12:58 +04:00
</form>