-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
144 lines (139 loc) · 4.65 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Settings</title>
<link rel="stylesheet" href="settings.css" />
<link rel="icon" href="NEW_FAVICON.png" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body style="background-color: #1d1b31; height: 100vh; position: relative">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<div class="sidebar">
<div class="profile-picture">
<img
style="
height: 100px;
border-radius: 100%;
width: 100px;
margin-top: 100px;
object-fit: cover;
"
src="360_F_243123463_zTooub557xEWABDLk0jJklDyLSGl2jrr.jpg"
alt=""
/>
</div>
<div
style="
margin-top: 20px;
margin-bottom: 50px;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
"
>
<b>Andrew Smith</b><br />
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="analytics.html"
>Overview</a
>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="experimental.html">Reports</a>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="tasks.html"
>Tasks</a
>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="revenue.html">Revenue</a>
</div>
<div class="sidebar-element">
<a style="color: rgb(174, 169, 172)""
>Settings</a
>
</div>
</div>
<div class="navbar">
<p
style="
padding-left: 28px;
padding-top: 5px;
/* font-family: 'Courier New', Courier, monospace; */
"
>
Settings
</p>
</div>
<div class="settings-container">
<div class="settings-section">
<h2 class="section-title">Profile Settings</h2>
<div class="settings-item">
<label for="username">Username:</label>
<input type="text" id="username" value="JessicaDoe" />
</div>
<div class="settings-item">
<label for="email">Email:</label>
<input type="email" id="email" value="[email protected]" />
</div>
<div class="settings-item">
<label for="profile-pic">Profile Picture:</label>
<input type="file" id="profile-pic" />
</div>
</div>
<!-- Account Preferences Section -->
<div class="settings-section">
<h2 class="section-title">Account Preferences</h2>
<div class="settings-item">
<label for="language">Language:</label>
<select id="language">
<option value="en" selected>English</option>
<option value="es">Spanish</option>
<option value="fr">French</option>
</select>
</div>
<div class="settings-item">
<label for="notifications">Enable Notifications:</label>
<input type="checkbox" id="notifications" checked />
</div>
</div>
<!-- Theme Options Section -->
<div class="settings-section">
<h2 class="section-title">Theme Options</h2>
<div class="settings-item">
<label for="theme">Select Theme:</label>
<select id="theme">
<option value="dark" selected>Dark Mode</option>
<option value="light">Light Mode</option>
</select>
</div>
</div>
<!-- Security Settings Section -->
<div class="settings-section">
<h2 class="section-title">Security Settings</h2>
<div class="settings-item">
<label for="password">Change Password:</label>
<input
type="password"
id="password"
placeholder="Enter new password"
/>
</div>
<div class="settings-item">
<button class="save-button">Save Changes</button>
</div>
</div>
</div>
</body>
</html>