-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_in.php
49 lines (47 loc) · 1.34 KB
/
sign_in.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php require_once 'inc/top.php'; ?>
<main class="landing">
<div class="wrap">
<form <?php echo FORM_ATTRIB; ?>>
<legend>
<div class="title"><?php echo $new_caption->title; ?></div>
<div class="subtitle"><?php echo $new_caption->subtit; ?></div>
</legend>
<table border="0">
<tr>
<td>
<label for="username">username</label>
<input type="search" id="username" name="username" value=""
maxlength="25" required />
</td>
</tr>
<tr>
<td>
<div class="password_cover">
<label for="password">password</label>
<input type="password" id="password" name="password" value=""
maxlength="25" required />
<a onClick="togglePassword()" title="Show/Hide">SHOW</a>
</div>
</td>
</tr>
<tr>
<td>
<button type="submit">Log in</button>
<div class="help_cover">
<a href="sign_in_help.php" title="Retrieve Password">Forgot Password</a>
</div>
</td>
</tr>
<tr>
<td>
<div class="next_cover">
<span>Don't have an account?</span>
<a href="sign_up.php" title="Register">Sign up</a>
</div>
</td>
</tr>
</table>
</form>
</div>
</main>
<?php require_once 'inc/end.php'; ?>