add cms, add todo
[ssproject1617.git] / testcms-final-anon / system / admin / theme / users / reset.php
1 <h1>Reset Password</h1>
2
3 <?php echo Notifications::read(); ?>
4
5 <section class="content">
6
7 <form method="post" action="<?php echo Url::current(); ?>" >
8 <fieldset>
9 <legend>Password reset for <?php echo $user->real_name; ?></legend>
10 <em>Please enter a new password that you won&rsquo;t forget this time.</em>
11
12 <p>
13 <label for="password">Password:</label>
14 <input name="password" id="password" type="password" value="<?php echo Input::post('password'); ?>">
15 </p>
16
17 <p class="buttons">
18 <button type="submit">Submit</button>
19 <a href="<?php echo Url::make(); ?>">Back to <?php echo Config::get('metadata.sitename'); ?></a>
20 </p>
21 </fieldset>
22 </form>
23
24 </section>