-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleSuggestions.html
89 lines (83 loc) · 4.01 KB
/
styleSuggestions.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
<!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"/>
</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">Your Details</a>
<a href="myBookings.html" class="tab">Bookings</a>
<a href="developmentTeam.html" class="tab">Contact Us</a>
</nav>
<div class="container">
<form id="customerHairForm">
<h2>Please Enter Information about Your Hair</h2>
<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>
<button type="submit">Get Inspiration for Your Hair</button>
<div class="image-display" id="imageDisplay">
<!-- Images will be displayed here -->
</div>
</form>
</div>
<footer>
<p>© 2024 Hair Compare. All rights reserved.</p>
</footer>
<script src="Scripts/suggestHair.js"></script>
<script src="Scripts/script.js"></script>
<script src="Scripts/login.js"></script>
</body>
</html>