-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
85 lines (82 loc) · 2.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Salon</title>
<link rel="stylesheet" type="text/css" href="include_files/mystyle.css">
<style type="text/css">
body {
background-color: palevioletred;
}
form {
padding: 10px;
background-color: #d3d3d340; /*light grey*/
width: 50%;
margin: 0 auto;
}
table {
width: 100%;
}
.txt_input {
padding: 5px;
margin: 5px;
width: 80%;
}
button {
padding: 5px;
margin: 5px;
width: 70%;
font-weight: bold;
}
</style>
</head>
<body>
<?php include_once "navigation.php"; ?>
<form action="signup_submit.php" method="post" enctype="multipart/form-data">
<h1>Signup Form</h1>
<hr>
<table border="0">
<tr>
<td><strong>First Name</strong></td>
<td><input class="txt_input" type="text" name="firstName" required></td>
</tr>
<tr>
<td><strong>Last Name</strong></td>
<td><input class="txt_input" type="text" name="lastName" required></td>
</tr>
<tr>
<td><strong>Phone Number</strong></td>
<td><input class="txt_input" type="number" name="phone" required></td>
</tr>
<tr>
<td><strong>Email</strong></td>
<td><input class="txt_input" type="text" name="email" required></td>
</tr>
<tr>
<td><strong>Profile Image</strong></td>
<td><input class="txt_input" type="file" name="profileImage" required></td>
</tr>
<tr>
<td><strong>Gender</strong></td>
<td>
<input type="radio" name="gender" value="Male" checked> Male
<input type="radio" name="gender" value="Female"> Female
</td>
</tr>
<tr>
<td><strong>Password</strong></td>
<td><input class="txt_input" type="password" name="password" required></td>
</tr>
<tr>
<td><strong>Confirm Password</strong></td>
<td><input class="txt_input" type="password" name="confirmPassword" required></td>
</tr>
<tr>
<td></td>
<td><button type="submit" name="signup_button">Sign Up</button></td>
</tr>
</table>
</form>
<script src="include_files/jquery-3.1.1/jquery.min.js"></script>
</body>
</html>