student numbers
[ssproject1617.git] / testcms-final-anon / system / admin / theme / users / login.php
1 <h1>Log in</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
10 <p>
11 <label for="user">Username:</label>
12 <input autocapitalize="off" name="user" id="user" value="<?php echo Input::post('user'); ?>">
13 </p>
14
15 <p>
16 <label for="pass">Password:</label>
17 <input type="password" name="pass" id="pass">
18
19 <em><a href="<?php echo admin_url('users/amnesia'); ?>">Forgotten your password?</a></em>
20 </p>
21
22 <p class="buttons">
23 <button type="submit">Login</button>
24 <a href="<?php echo Url::make(); ?>">Back to <?php echo Config::get('metadata.sitename'); ?></a>
25 </p>
26 </fieldset>
27 </form>
28
29 </section>