-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanager_settings.html
More file actions
150 lines (120 loc) · 5.63 KB
/
manager_settings.html
File metadata and controls
150 lines (120 loc) · 5.63 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Appointer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" type="text/css"
media="screen and (max-device-width: 480px)"
href="style-sheet-small.css" >
<link rel="stylesheet" type="text/css"
media="screen and (min-device-width: 480px)"
href="style-sheet-medium.css" >
<link rel="stylesheet" type="text/css"
media="screen and (min-device-width: 786px)"
href="style-sheet-large.css" >
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
<script src="validation.js"></script>
</head>
<body>
<div class="background">
<!-- START OF TOOLBAR -->
<nav>
<ul class="toolbar__wrapper">
<a href="Appointer-Home.html"><img src="Photos/Logo.png" class="toolbarLogo"></a>
<li><a href="#myprofile">Book Meeting</a></li>
<li><a href="#addstylist">Add Stylist</a></li>
<li><a href="#myprofile">My Profile</a></li>
<li><a href="#logout">Logout</a></li>
</ul>
</nav>
<!-- END OF TOOLBAR -->
<div class="stylemod">
<div class="stylemod__wrapper">
<div class="stylemod__container">
<div class="stylemod__container">
<div class="stylemod__tab-wrapper">
<div class="settings__wrapper">
<div id="stylistName" class="settings__title">Manager Settings</div>
Change settings like your email, password, and address.
<br /><br />
<label class="settings_label">Change Branch Location:</label>
<br />
<input type="text" name="changeAddress" class="settings_input" placeholder="Change Address"> <br />
<div class="styled-select" >
<select id="country">
<option>Canada</option>
</select>
</div>
<div class="styled-select" >
<select id="province">
<option value="00" >Province/Territory</option>
<option value="Alberta">Alberta</option>
<option value="British Columbia">British Columbia</option>
<option value="Manitoba">Manitoba</option>
<option value="New Brunswick">New Brunswick</option>
<option value="Newfoundlan/Labrador">Newfoundland/Labrador</option>
<option value="Northwest Territories">Northwest Territories</option>
<option value="Nova Scotia">Nova Scotia</option>
<option value="Nunavut">Nunavut</option>
<option value="Ontario">Ontario</option>
<option value="Prince Edward Island">Prince Edward Island</option>
<option value="Quebec">Quebec</option>
<option value="Saskatchewan">Saskatchewan</option>
<option value="Yukon">Yukon</option>
</select>
</div>
<div class="styled-select" >
<select id="city">
<option value="00" >City</option>
</select>
</div>
<br /> <br />
<hr>
<label class="settings_label">Change Email:</label>
<br /><input type="text" name="changeEmail" class="settings_input" placeholder="Change Email"> <br />
<hr>
<label class="settings_label">Change Password:</label>
<br /><input type="text" name="changePassword" class="settings_input" placeholder="Enter New Password"> <br />
<label class="settings_label">Confirm Password:</label>
<br /><input type="text" name="confirmChangePassword" class="settings_input" placeholder="Confirm New Password"> <br />
<hr>
<label class="settings_label">Delete a Stylist's Account: </label>
<br /><br />
<div class="styled-select2">
<select id="stylistAccounts">
<option>Please select a stylist's account...</option>
<option>Edward Scissor Hands</option>
<option>Denise</option>
</select>
</div>
<br />
<button class="deleteButton">Delete Stylist Account</button>
<br /><br />
<hr>
<button class="deleteButton">Delete Account</button>
<br /><br />
<hr>
<button class="saveButton">Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="edit_stylist_handler.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/grid.js"></script>
<script>
$(function() {
Grid.init();
});
</script>
</html>