-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.php
53 lines (51 loc) · 1.44 KB
/
sign_up.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
50
51
52
53
<?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="full_name">name</label>
<input type="text" id="full_name" name="full_name" value=""
maxlength="50" required placeholder="Full Name" />
</td>
</tr>
<tr>
<td>
<label for="email">email</label>
<input type="email" id="email" name="email" value=""
placeholder="handle@domain.com" maxlength="50" 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">Create Account</button>
</td>
</tr>
<tr>
<td>
<div class="next_cover">
<span>Already have an account?</span>
<a href="sign_in.php" title="Login">Sign in</a>
</div>
</td>
</tr>
</table>
</form>
</div>
</main>
<?php require_once 'inc/end.php'; ?>