-
Notifications
You must be signed in to change notification settings - Fork 0
/
userProfile.html
155 lines (129 loc) · 7.16 KB
/
userProfile.html
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hair Compare</title>
<link rel="icon" href="images/hairCompareicon.png"/>
<link rel="stylesheet" href="styles/classes.css" />
<link rel="stylesheet" href="styles/ids.css" />
<link rel="stylesheet" href="Styles/basicElements.css"/>
<link rel="stylesheet" href="Styles/layouts.css"/>
</head>
<body>
<header>
<div class="container">
<div>
<h1>Hair Compare - Prototype</h1>
<h2>Customers - Quick search local hairdressers</h2>
<h2>Hairdressers - Advertise for free.</h2>
</div>
<div class="gridLayoutOneColumn">
<button id="loginButton" onclick="window.location.href='./Login.html'">Login</button>
<span id="displayUsername"></span>
<button id="logoutButton" onclick="logout()">Logout</button>
</div>
</div>
</header>
<nav class="tabs">
<a href="home.html" class="tab">Home Page</a>
<a href="userProfile.html" class="tab active">Your Details</a>
<a href="myBookings.html" class="tab">Bookings</a>
<a href="developmentTeam.html" class="tab">Contact Us</a>
</nav>
<div class="formImitation">
<div class="gridInput">
<label for="first_name">First name:</label>
<input type="text" id="first_name" placeholder="first name" required>
<label for="last_name">last name:</label>
<input type="text" id="last_name" placeholder="last name" required>
<label for="gender">Gender:</label>
<select id="gender" name="gender" >
<option value="" disabled selected>Select your gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="nonbinary">Non-binary</option>
<option value="other">Other</option>
<option value="preferNotToSay">Prefer not to say</option>
</select>
<label for="hair-type">Hair Type:</label>
<select id="hair-type" name="hair-type" >
<option value="" disabled selected>Select your hair type</option>
<option value="straight">Straight</option>
<option value="wavy">Wavy</option>
<option value="curly">Curly</option>
<option value="coily">Coily</option>
</select>
<label for="hair-colour">Hair Colour:</label>
<select id="hair-colour" name="hair-colour" >
<option value="" disabled selected>Select your hair colour</option>
<option value="black">Black</option>
<option value="brown">Brown</option>
<option value="blonde">Blonde</option>
<option value="red">Red</option>
<option value="gray">Gray</option>
<option value="other">Other</option>
</select>
<label for="hair-length">Current Hair Length:</label>
<select id="hair-length" name="hair-length" >
<option value="" disabled selected>Select your hair length</option>
<option value="short">Short (Above shoulders)</option>
<option value="medium">Medium (Shoulder length)</option>
<option value="long">Long (Below shoulders)</option>
</select>
<label for="hairdresserCheckBox">Would you like to provide hair services?</label>
<input type="checkbox" id="hairdresserCheckBox">
</div>
<div id="hairdresserFields" style="display: none;">
<div class="gridInput">
<label for="name">Location:</label>
<input type="text" required>
<label for="hairdresserCheckBox">Do you work as part of a salon</label>
<input type="checkbox" id="hairdresserCheckBox">
<label for="salon">Choose your salon:</label>
<select id="salon" name="salon">
<option value="" disabled selected>Select a salon</option>
<option value="freelancers">Freelance</option>
<option value="Salon A">Salon A</option>
<option value="Salon B">Salon B</option>
</select>
<label for="years">Years of experience:</label>
<input type="number" min="0" placeholder="Years" style="width: 60px;">
</div>
<h3>Qualifications</h3>
<div class="gridInput">
<label> Certificate III in Hairdressing (SHB30416)</label>
<input type="checkbox" name="qualifications" value="Certificate III in Hairdressing">
<label>Certificate IV in Hairdressing (SHB40116)</label>
<input type="checkbox" name="qualifications" value="Certificate IV in Hairdressing">
<label>Diploma of Hairdressing (SHB50116)</label>
<input type="checkbox" name="qualifications" value="Diploma of Salon Management">
<label>Advanced Diploma of Hairdressing (SHB50216)</label>
<input type="checkbox" name="qualifications" value="Barbering Certificate">
<label for="date">Select Date:</label>
<input type="date" id="date" name="date" required>
<label for="startTime">Start Time:</label>
<input type="time" id="startTime" name="startTime" required>
<label for="endTime">End Time:</label>
<input type="time" id="endTime" name="endTime" required>
</div>
</div>
<div class="gridInput">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" >
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number" >
<label for="address">Address:</label>
<input type="text" id="address" name="address" placeholder="Enter your address" >
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob">
</div>
</div>
<footer>
<p>© 2024 Hair Compare. All rights reserved.</p>
</footer>
<script src="Scripts/regHairdresser.js"></script>
<script src="Scripts/script.js"></script>
<script src="Scripts/login.js"></script>
</body>
</html>