-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.php
More file actions
27 lines (23 loc) · 738 Bytes
/
forms.php
File metadata and controls
27 lines (23 loc) · 738 Bytes
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
<?php
?>
<html>
<head>
</head>
<body>
<h2>PinkIT Application</h2>
<form method="post" action="insert.php">
<table border="0" width="70%">
<tr><td>Name: </td><td><input type="text" name="name" maxlength="15" /><br></td></tr>
<tr><td>Email: </td><td><input type="text" name="email" maxlength="30" /><br></td></tr>
<tr><td>Password: </td><td><input type="password" name="password" maxlength="8" /><br></td></tr>
<tr><td>Confirm Password: </td><td><input type="password" name="cpassword" maxlength="8" /><br></td></tr>
</table>
<p>
<input type="submit" value="register" />
<input type="reset" value="reset"/>
</p>
</form>
<hr>
<?php include("links.php"); ?>
</body>
</html>