2014-10-20 17:05:48 +00:00
|
|
|
<?php
|
2015-02-26 10:37:37 +00:00
|
|
|
/** @var array $_ */
|
|
|
|
/** @var $l OC_L10N */
|
2014-10-20 17:05:48 +00:00
|
|
|
style('lostpassword', 'resetpassword');
|
|
|
|
script('core', 'lostpassword');
|
|
|
|
?>
|
|
|
|
|
2014-06-02 22:24:27 +00:00
|
|
|
<form action="<?php print_unescaped($_['link']) ?>" id="reset-password" method="post">
|
2011-08-29 18:37:18 +00:00
|
|
|
<fieldset>
|
2014-05-27 21:09:08 +00:00
|
|
|
<p>
|
|
|
|
<label for="password" class="infield"><?php p($l->t('New password')); ?></label>
|
2014-06-13 13:54:09 +00:00
|
|
|
<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-27 21:09:08 +00:00
|
|
|
</p>
|
|
|
|
<input type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" />
|
2014-11-18 09:25:16 +00:00
|
|
|
<p class="text-center">
|
|
|
|
<img class="hidden" id="float-spinner" src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"/>
|
|
|
|
</p>
|
2011-08-29 18:37:18 +00:00
|
|
|
</fieldset>
|
2011-09-04 16:12:58 +00:00
|
|
|
</form>
|