-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathserviceSelection.html
More file actions
30 lines (29 loc) · 955 Bytes
/
serviceSelection.html
File metadata and controls
30 lines (29 loc) · 955 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
28
29
30
<!DOCTYPE html>
<html lang="en" xmlns:th = "http://www.thymeleaf.org/">
<head>
<meta charset="UTF-8">
<title>Select Your Spa Services</title>
<link href="../static/css/styles.css" th:href="@{/css/styles.css}" rel="stylesheet" />
</head>
<body>
<form method = 'post'>
<label>
Skin type:
<select name = 'skintype'>
<option value = 'oily'>Oily</option>
<option value = 'combination'>Combination</option>
<option value = 'normal'>Normal</option>
<option value = 'dry'>Dry</option>
</select>
</label>
<label>
Manicure or Pedicure?
<select name = 'manipedi'>
<option value = 'manicure'>Manicure</option>
<option value = 'pedicure'>Pedicure</option>
</select>
</label>
<input type = 'submit' value = 'Submit'>
</form>
</body>
</html>