-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemployee_settings.html
More file actions
93 lines (70 loc) · 3.09 KB
/
employee_settings.html
File metadata and controls
93 lines (70 loc) · 3.09 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
<!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 class="active" href="#home">Home</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">Employee Settings</div>
Change settings like your email, password, and address.
<br /><br />
<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 /><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>