-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.php
42 lines (39 loc) · 888 Bytes
/
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
<?php
session_start();
require("config.php");
?>
<html>
<body>
<fieldset style="width:30%"><legend>New Account</legend>
<form action="new_account.php" method="post" >
<table>
<tr>
<td><label>Name</label></td>
<td><input type="text" name="firstname" required/></td>
</tr>
<tr>
<td><label>Address</label></td>
<td><input type="text" name="address" required /></td>
</tr>
<tr>
<td><label>D.O.B</label></td>
<td><input type="text" name="dob" required/></td>
</tr>
<tr>
<td><label>Password</label></td>
<td><input type="password" name="password" required/></td>
</tr><br>
<tr>
<tr>
<td><label>Phone</label></td>
<td><input type="tel" name="mobile" required/></td>
</tr><br>
<tr>
<td><input type="submit" value="Create " /></td>
<td><a href="index.php"><button type="button">Cancel</button></a></td>
</tr>
</table>
</form>
</fieldset>
</body>
</html>