-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
41 lines (40 loc) · 1.42 KB
/
signup.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<h1>SignUp</h1>
<form name="signup_form" action="verify_signup.php" method="post" enctype="multipart/form-data">
<table>
<tr>
<td>UserName</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>PassWord</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td>Email Address</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td>First Name</td>
<td><input type="text" name="firstname"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="lastname"></td>
</tr>
<tr>
<td>Photo Url</td>
<!--<td><input type="text" name="photourl"></td>-->
<td><input type="file" name="image" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Signup"></td>
</tr>
</table>
</form>
</body>
</html>