nextcloud/core/lostpassword/templates/resetpassword.php

21 lines
816 B
PHP
Raw Normal View History

<?php
/** @var array $_ */
/** @var $l OC_L10N */
style('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 />
<img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
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(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"/>
</p>
</fieldset>
2011-09-04 20:12:58 +04:00
</form>